Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Banned_Players = {
- "manglelover81",
- "Player2",
- "Player3",
- }
- game.Players.ChildAdded:connect(function(Player)
- for i, v in pairs(Banned_Players) do
- if Player.Name == v then
- Player:Kick("You're banned from this game!")
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement