Skip to content
This repository was archived by the owner on Nov 10, 2018. It is now read-only.
This repository was archived by the owner on Nov 10, 2018. It is now read-only.

PlayerAdded event does not fire for LocalScripts #445

@MerelyRBLX

Description

@MerelyRBLX

Reproduction steps:

Create a localscript in StarterGui with the following code:

game:GetService("Players").PlayerAdded:connect(function(player)
    print("PlayerAdded fired for " .. player.Name)
end)

game:GetService("Players").ChildAdded:connect(function(player)
    print("ChildAdded fired for " .. player.Name)
end)
  1. Join an online game
  2. Have another player join the game
  3. Open up the developer console and notice that the ChildAdded event fired, but not PlayerAdded.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions