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

Why wont this player added thing work?

Asked by 8 years ago

Why won't this work? Is the PlayerAdded right? Have I used the PlayerAdded right?

1local plr = game.Players.PlayerAdded:connect(function(plr)
2    if plr.Name == "jaxxcoolboy" then
3        script.Parent.Text = "The founder jaxxcoolboy is in the game!"
4    end
5end)

2 answers

Log in to vote
0
Answered by 8 years ago
Edited 8 years ago

Your issue seems to be an obscure one which not even I knew about until now; when a player first enters (at least in Play Solo; not entirely sure), their name is set to Player1 before being set to the correct username. I found that simply adding a wait() fixed this.

1game.Players.PlayerAdded:connect(function(plr)
2    wait()
3    if plr.Name == "jaxxcoolboy" then
4        script.Parent.Text = "The founder jaxxcoolboy is in the game!"
5    end
6end)
Ad
Log in to vote
0
Answered by 8 years ago

No on PlayerAdded you don't want a variable so instead of

1local plr = game.Players.PlayerAdded:connect(function(plr)

you'll want to do this

1game.Players.PlayerAdded:connect(function(plr)

a function cannot be a variable if you want it to run. or you could do this

1function onPlayerEntered()
2--code
3end
4 
5game.Players.PlayerAdded:connect(onPlayerEntered)

And always remember to put an end) if you're doing the first one

0
Well, in some cases, having that variable is necessary (if you want to later disconnect the event), but in this case it isn't. Forgot about that. IDidMakeThat 1135 — 8y

Answer this question