An evident issue is that your script, identified as "Join", is not bound to any sort of event signalling line.
As a result, your script will never execute.
Consider using the PlayerAdded event, as shown below:
"game.Players.PlayerAdded:connect(Join)"
That will execute whenever a Player joins the game. |