Advertisement
iJanzzo

Roblox How To Make E To Pick Up Tool

Apr 26th, 2021
1,270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local prox = script.Parent
  2. local touch = prox.Parent:FindFirstChild("TouchInterest")
  3. local tool = prox.Parent.Parent
  4.  
  5. prox.Triggered:Connect(function(player)
  6. prox.Enabled = false
  7. tool.Parent = player.Character
  8. end)
  9.  
  10. while true do
  11. wait()
  12. if tool.Parent == workspace and touch then
  13. prox.Enabled = true
  14. touch:Destroy()
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement