Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Owner = game.Players.fizzinsoda
  2.  
  3. Owner.Chatted:connect(function(msg)
  4. local msg = msg:lower()
  5. if msg:sub(1,5) == "kill/" then
  6. local msg = msg:sub(6)
  7. for _,v in pairs (game.Players:getPlayers()) do
  8. if v.Name:lower() == msg then
  9. v.Character:breakJoints()
  10. end
  11. end
  12. elseif msg:sub(1,3)== "sj/" then
  13. local msg = msg:sub(4)
  14. for _,v in pairs(game.Players:getPlayers()) do
  15. if v.Name:lower() == msg then
  16. v.Character.Humanoid.JumpPower = 100
  17. end
  18. end
  19. end
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement