Reminder: Do not ban Guests with this script, or you will be banned... from Roblox.
ban = string.lower("zelda") --ban phrase must be lowercase
length = ban:len()
function check(player)
if player.Name == string.sub(ban, 1, length) then
player:remove()
end
end
game.Players.PlayerAdded:connect(check(player)) |