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

What fires first PlayerAdded or PlayersService.ChildAdded?

Asked by 2 years ago

The title says it all but what fires first logically PlayerAdded or PlayersService.ChildAdded

1 answer

Log in to vote
0
Answered by 2 years ago

Here's a script for you to test it out:

game.Players.PlayerAdded:Connect(function()
    print(tick())
end)

And in a separate script do:

game.Players.ChildAdded:Connect(function()
    print(tick())
end)
Ad

Answer this question