Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+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!