Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local b = Instance.new('Tool', game.Players.LocalPlayer.Backpack)
- b.RequiresHandle = false
- b.Name = "Delete"
- b.Activated:connect(function()
- local target = game.Players.LocalPlayer:GetMouse()
- for i,v in pairs(game:GetDescendants()) do
- if v.Name == "TransEvent" then
- local args = {
- [1] = target.Target,
- [2] = 1
- }
- v:FireServer(unpack(args))
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment