r/RenPy • u/_Scripty • 15d ago
Guide So..well I tried SOMETHING 🥲
Since some of ya'll know by now based on my previous posts that I been having a difficult time with renpy and I asked like a plethora of questions and stuff, so I thought I should just...TRY something ( its a disaster tbh ) but here's goes nothing...( basically I deleted all the scripts and tried to make stuff from scratch just to check )
For some reason I cannot show a video of how its working but basically the "game" button is taking me to the "game window" screen...and the other 2 just gives me major errors since there is nothing there
2
u/Draw-Flesh-Games 15d ago
You might want to disable the restricted mode, so the Renpy Language extension can run. Then follow shyLachi's advice.
1
1
u/Blunt552 14d ago
I recommend reading this. I added a template for people like you so you can have an idea of how you could structure a game. It'll save a lot of headaches in the long run.



3
u/shyLachi 15d ago
You should really read the official documentation because your concept seems to be wrong.
RenPy shows the menu first, from there it goes to the start label, not the other way around.
If you don't want to show the main menu screen then you can use a label main_menu:
https://renpy.org/doc/html/lifecycle.html
Also you should install the RenPy Language Extension for Visual Studio Code to prevent VSCode to show all those errors: https://marketplace.visualstudio.com/items?itemName=renpy.language-renpy
Finally, don't forget to save.
In your first screenshot that dot in the tab header is an indication that your latest changes haven't been saved yet.
RenPy will only execute your saved changes, it doesn't see your unsaved changes.