I’ve been trying to figure out how to allow the Player to name themselves and use the name later in text form. Making a text say something like “Hello + PlayerName.” Please explain I’ve been trying to figure out how to do this but i haven’t been successful. I am using C#
Store the player name in a string variable in a Singleton class for the Game, and make it public so you can access it from anywhere. Input the string using GUI Input. Output it using GUI or whatever else you may be using for text.