They're inside the game folder next to all the other scripts.
title_backgrounds = {
"Title": "gui/Title.png",
"SideA": "gui/SideA.png",
"SideB": "gui/SideB.png",
}
Also I found out that using the jump command anywhere on my script to get the menu to change gives me this error, It's like the label doesn't exist or it's not reading your script :/ (ps: I'm separating the chapters into different scripts, that's why it says chapter1 and not scripts)
While running game code:
File "game/Chapter1.rpy", line 3, in script
jump SideA
renpy.script.LabelNotFound: could not find label 'SideA'.
-- Full Traceback ------------------------------------------------------------
Traceback (most recent call last):
File "game/Chapter1.rpy", line 3, in script
jump SideA
File "renpy/ast.py", line 1938, in execute
rv = renpy.game.script.lookup(target)
~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^
File "renpy/script.py", line 1217, in lookup
raise LabelNotFound(original)
renpy.script.LabelNotFound: could not find label 'SideA'.