local blacklist = {"ii","Omq","Kinq","cute","Cr"} -- Put unwanted names here, format = {"USERNAME"}, don't forget commas.
kicktext = "Server has detected you have a unwanted username." -- Kick text here
game.Players.PlayerAdded:connect(function(player)
game.Workspace:WaitForChild(player.Name)
local plyname = player.Name
local plykicked = false
for i,v in pairs(blacklist) do
if string.lower(string.sub(plyname,1,string.len(v))) == string.lower(v) then
plykicked = true
player:kick(kicktext)
print(plyname.." Has been kicked from the server. Reason: Unwanted username.")
end
end
if plykicked == false then
print(plyname.." has passed username identification test.")
else
print(plyname.." has failed username identification test.")
end
end)
|