fetmaro007

Ragdoll Engine Delete Tools

Apr 11th, 2021
1,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local b = Instance.new('Tool', game.Players.LocalPlayer.Backpack)
  2. b.RequiresHandle = false
  3. b.Name = "Delete"
  4. b.Activated:connect(function()
  5. local target = game.Players.LocalPlayer:GetMouse()
  6. for i,v in pairs(game:GetDescendants()) do
  7. if v.Name == "TransEvent" then
  8. local args = {
  9. [1] = target.Target,
  10. [2] = 1
  11. }
  12.  
  13. v:FireServer(unpack(args))
  14.  
  15. end
  16. end
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment