Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Pick up object roblox script
- local Detector = script.Parent.ClickDetector
- local Tool = game.ServerStorage.ClassicSword --Replace ClassicSword with the tool you want
- local Part = script.Parent
- Detector.MouseClick:Connect(function(Player)
- local Clone = Tool:Clone()
- Clone.Parent = Player.Character
- Part:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement