Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by DennisH1mself
- local banned = {"someoneyoudislike", "another person you dislike"}
- game.Players.PlayerAdded:Connect(function(player)
- for i, v in pairs(banned) do
- if player.Name == v then
- player:Kick("Your banned")
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement