Advertisement
TheEpicStill_Z

Untitled

Aug 10th, 2020
945
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 1 0
  1. Pick up object roblox script
  2.  
  3. local Detector = script.Parent.ClickDetector
  4. local Tool = game.ServerStorage.ClassicSword --Replace ClassicSword with the tool you want
  5. local Part = script.Parent
  6.  
  7. Detector.MouseClick:Connect(function(Player)
  8. local Clone = Tool:Clone()
  9. Clone.Parent = Player.Character
  10. Part:Destroy()
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement