I tried using this script:
1 | gui = PATHTOGUI |
2 |
3 | game.Players.PlayersAdded( function (player) |
4 | gui.Text = Player.Name |
5 | end ) |
But I cant find the error in it.
1 | gui = PATHTOGUI |
2 |
3 | game.Players.PlayerAdded( function (player) |
4 | gui.Text = player.Name |
5 | end ) |
Try that.