How would I detect a new player under a team

How would I detect a new player under a team? Keep In mind that I am using a local script to manually change the team.

Use the PlayerAdded Signal on the Team.

local Team = YOUR_TEAM_HERE --Change this to your team

Team.PlayerAdded:Connect(function(Player)
    --FUNCTION HERE
end)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.