For the script problem, here's the error file:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/script.rpy", line 97: expected statement.
spirit = True
^
Ren'Py Version: Ren'Py 6.99.12.4.2187
Basically what I was trying to do was make a certain choice option only show if the player chose a specific thing earlier. The menu itself would still show if the player did not choose the specific thing earlier in the game, it's just that one of the choices would no longer show. In my actual script, I do have the python symbol ($) before the word spirit. Here's my code for what I just explained:
"Are you a spirit?":
$ spirit = True
(So, if the player chooses to ask that, then "spirit" should become true.)
"Are you his guardian?" if spirit == True:
(I also have this as a later choice. Two other questions are also present, but they can be asked no matter what the player did earlier in the game.)
Thanks~