Display player name the player chose in the game set up screen

I have a game where I want the player to type in their desired name in the “game set up” screen. I included an “InputField” which allows you type inside it (but no need to hit the “enter” key after). But I can’t figure out how to include the name you typed in the box to show up in-game after hitting “play”.

Does hitting “play” load a new scene?

If it does you can save it to disk and load it after the scene has loaded. Or you can use a data holder GameObject that uses DontDestoryOnLoad to hold it so you can access it in any scene.

Yes. Hitting “play” starts the main game.