You need to put your code between ``` so it can keep the format as Kaelyn said.
If that’s all your code, and I assume you’re using a 2 spaces indent, it should look like this:
Select your gender.
*choice
#Male
*goto male
#Female
*goto female
*label male
Welcome, stranger. In this adventure, you’re playing a young man named…
*input_text name
*finish
*label female
Welcome, stranger. In this adventure, you’re playing a young woman named…
*input_text name
*finish
For any variable (like ‘name’ in your example), you need to create it somewhere before you can use it.
In your startup.txt you’ll want to have a line like
*create name “”
That creates your variable, so your *input_text will now know about the variable called ‘name’.
There’s some more info on variables on this wiki here, that might help you out.
EDIT: in your startup.txt, not choicescript_stats.txt. Thanks to @Havenstone for correcting me on that!
I keep getting this. I can’t move forward to the scenes I labeled…
I tried to create temp* commands at the very top of the scene file but it doesn’t works.