Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Making a player enter "detect" script?

Asked by 11 years ago

what I mean is when a player enters it checks to see who it is

1local 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?
3end

1 answer

Log in to vote
2
Answered by 11 years ago
1function onEnter(p)
2print (p.Name)  -- Prints player's name
3end
4game.Players.PlayerAdded:connect(onEnter)

OR

1game.Players.PlayerAdded:connect(function(p)
2print (p.Name)  -- Prints player's name
3end)

RESPONSE TO YOUR COMMENT:

1local banland = "noob jimmy nobodylikesme"
2game.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
9end)
0
I need it so it kicks the person if their on the script. example: function onEnter (p) --print (p.NName) end Game.PlayerAdded:connect(onEnter) if p = NAME then game.Players.NAME:destroy() end paulieD123 5 — 11y
Ad

Answer this question