Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

Do I need to put something in the script to set the template up at the beginning of the game?

(+2)

Hello! You can add the following code after label start to display the screen:

call screen name
$ renpy.pause(hard=True)

If you want to disable the quick menu while the player enters their name, you can also add this line:

$ quick_menu = False

And you can add hide screen name in the next label to make this screen disappear.

(+1)

Thank you!