So I've come up with.
game.Players.ChildAdded.LocalPlayer.Username = N
Will this save the Child added's Name to the letter N?
So i can call it back?
And I've confused myself with how to call it back so How can I call back the username?
Ive changed it actually would it be N = game.Players.ChildAdded.(MaybeLocalPlayer).Username
Is that right?
game.Players.PlayerAdded:connect(function(player) local N = player.Name end)
If you are doing it in a LocalScript it would be something like this:
player = LocalPlayer local N = player.Name