RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make it so my item can be lifted by my roblox character"
-- script for item local tool = Instance.new("Tool") tool.Name = "Liftable Item" tool.RequiresHandle = true local handle = Instance.new("Part") handle.Name = "Handle" handle.Parent = tool tool.Parent = game.Players.LocalPlayer.Backpack -- now your item can be lifted by your Roblox character