Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local canKick = {"JayTheLionJR"}
- game.Players.PlayerAdded:Connect(function(plr)
- for _, c in pairs(canKick) do
- if plr.Name == c then
- plr.Chatted:Connect(function(msg)
- if string.sub(msg,1,5) == "!kick" then
- local pl = game.Players:FindFirstChild(string.sub(msg,7))
- if pl then
- pl:Kick("Rekt dont try again SKid .")
- end
- end
- end)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement