Advertisement
Guest User

kill all players in roblox void script builder

a guest
Aug 25th, 2017
3,839
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. local players = game.Players:GetChildren()
  2. local mouse = game.Players.LocalPlayer:GetMouse()
  3.  
  4. mouse.KeyDown:connect(function(key)
  5. key = key:lower()
  6. if key == "z" then
  7. for i, v in pairs(players) do
  8. v.Character.Humanoid.Health = 0
  9. end
  10. end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement