Advertisement
BobMe

Untitled

Dec 5th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local s = Instance.new("Sound")
  2.  
  3. print ("Loading...")
  4. repeat wait() until game.Players.LocalPlayer
  5. print ("Loaded.")
  6. local Mouse = game.Players.LocalPlayer:GetMouse()
  7. local Plr = game.Players.LocalPlayer
  8.  
  9. Mouse.KeyDown:connect(function(KeyDown)
  10. if KeyDown == "p" then
  11. wait()
  12. print ("Killing...")
  13. for v,i in pairs(game.Players:GetChildren()) do
  14. i.Character:BreakJoints()
  15. end
  16. repeat until Mouse.KeyUp:connect(function(KeyUp)
  17. end
  18. end)
  19.  
  20. Mouse.KeyUp:connect(function(KeyUp)
  21. if KeyUp == "0" then
  22. print ("Finished Killing")
  23. end
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement