of     1   

Cr_eepy
#220044400Thursday, June 29, 2017 6:19 PM GMT

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)
Cr_eepy
#220044438Thursday, June 29, 2017 6:20 PM GMT

Also, that "Cr" in the blacklist was just for testing xd
lenhelol
#220044721Thursday, June 29, 2017 6:25 PM GMT

what if they arent oders
Cshef
#220045001Thursday, June 29, 2017 6:29 PM GMT

they still have a oder name
ExtremeBuilder15
#220045124Thursday, June 29, 2017 6:31 PM GMT

I should make an account called ii_OmqKinqCuteyXx

    of     1