I have an OnPlayerAdded and CharacterAdded function that I only want to happen when the player joins. How can I do this?
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | plr.CharacterAdded:Connect( function (char) |
3 | print (plr .. "spawned" ) |
4 | end ) |
5 | end ) |
You are mostly correct but the Character may already be loaded. Try this instead:
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | local char = plr.Character or plr.CharacterAdded:Wait() |
3 | print (plr.Name .. " spawned for the first time!" ) |
4 | end ) |
If this worked, make sure to mark it as correct/upvote! Thanks!