Advertisement
p0vdnot

Untitled

Nov 19th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local Admin = "p0vd"
  2.  
  3. local Players = game:GetService("Players")
  4.  
  5. Players.Admin.Chatted:Connect(function(msg)
  6. print(msg)
  7. if msg ~= nil then
  8. if string.lower(string.sub(msg, 1,4)) == "kick" then
  9. local Target = Players:FindFirstChild(string.sub(msg, 6))
  10. if Target ~= nil then
  11. Target:Kick()
  12. end
  13. end
  14. end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement