Advertisement
zed_isJayTheLionJR

kicky 1

Jan 7th, 2019
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local canKick = {"JayTheLionJR"}
  2.  
  3. game.Players.PlayerAdded:Connect(function(plr)
  4. for _, c in pairs(canKick) do
  5. if plr.Name == c then
  6. plr.Chatted:Connect(function(msg)
  7. if string.sub(msg,1,5) == "!kick" then
  8. local pl = game.Players:FindFirstChild(string.sub(msg,7))
  9. if pl then
  10. pl:Kick("Rekt dont try again SKid .")
  11. end
  12. end
  13. end)
  14. end
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement