Advertisement
Guest User

Untitled

a guest
May 26th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. local Banned_Players = {
  2. "resperdwjeckjack1455",
  3. "Player2",
  4. "Player3",
  5. }
  6.  
  7. game.Players.ChildAdded:connect(function(Player)
  8. for i, v in pairs(Banned_Players) do
  9. if Player.Name == v then
  10. Player:Kick("You're banned from this game!")
  11. end
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement