what I mean is when a player enters it checks to see who it is
1 | local function enter (player) |
2 | -- What would go in between? a connect: block or a while true do block. Also how would it know to remove them if they were the certain player? |
3 | end |
1 | function onEnter(p) |
2 | print (p.Name) -- Prints player's name |
3 | end |
4 | game.Players.PlayerAdded:connect(onEnter) |
OR
1 | game.Players.PlayerAdded:connect( function (p) |
2 | print (p.Name) -- Prints player's name |
3 | end ) |
RESPONSE TO YOUR COMMENT:
1 | local banland = "noob jimmy nobodylikesme" |
2 | game.Players.PlayerAdded:connect( function (p) |
3 | for w in string.gmatch(banland, "%a+" ) do |
4 | if string.lower(p.Name) = = string.lower(w) then |
5 | p:Kick() |
6 | break |
7 | end |
8 | end |
9 | end ) |