RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a script to let me pick up a part as a tool and hold it in my hands"
-- local script local player = game:GetService("Players").LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local part = mouse.Target if part and part:IsA("BasePart") then local tool = Instance.new("Tool") tool.Name = part.Name tool.Parent = player.Backpack part.Parent = tool player.Character.Humanoid:EquipTool(tool) end end)