SebTDZ

Remove Tool Scripts

Apr 7th, 2019
3,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Plr = game.Players.LocalPlayer
  2. local Tool = Plr.Backpack:FindFirstChild('Remove')
  3. local Event = Tool.Event
  4.  
  5. Tool.Equipped:connect(function(mouse)
  6.     mouse.Button1Down:connect(function()
  7.         if mouse.Target then
  8.             Event:FireServer(mouse.Target)
  9.         end
  10.     end)
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment