Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
71
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 = {"sharkyship142"} local prefix = "[Banned] " local message = "You are banned from the server!" game.Players.PlayerAdded:Connect(function(player) for _, v in pairs(banned) do if player.Name == v then player:kick(prefix..message) end end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement