"where's the proof it's copied?"
Mine:
blacklisted = {"exeras"}
game:service'Players'.PlayerAdded:connect(function(new)
for _, v in pairs(blacklisted) do
if new.Name:find(v) then
new:Kick''
end end end) -- If there's an error I never used studio to correct it.
Compared to:
"blacklisted = {"exeras"}
game.Players.PlayerAdded:connect(function(new) -- function will run when a player joins
for _, v in pairs(blacklisted) do -- loop through the table
if new.Name == v then -- if new's name is equal to a element in the table then kick him from the server
new:Kick()
end -- end loop
end) -- end playeradded function" |