How do I detect if a player has joined?
It completely depends on whether you are using a server side script or a local client side script. Both ways work differently.
So how would I do it in a local script?
You would want to hook up a repeat
loop to check if game.Players.LocalPlayer is nil or true.
1 | local players = game:GetService( "Players" ) |
2 | repeat wait() until players.LocalPlayer |
3 | local player = players.LocalPlayer |
How would I do it with a server side script?
You can use the playeradded
event and call it to all the current players as well. Do this at the beginning of your script, or you may glitch your game out.
01 | local Players = game:GetService( "Players" ) |
03 | function playerJoined(player) |
04 | print (player.Name .. " has entered the game" ) |
07 | Players.PlayerAdded:connect(onPlayerAdded) |
09 | for _,player in pairs (Players:GetPlayers()) do |
Both of these methods work, but they only work in their respective scripts.