Whenever I run my code, it shows me the bad label error. I’m new at this and so I’m fairly sure it’s an obvious mistake, so please can someone help me out.
Thanks
My code looks like this:
*page_break
Let's begin. What's your gender?
*choice
#Male
*set gender "Male"
*goto naming_male
#Female
*set gender "Female"
*goto naming_female
#Non-binary
*set gender "Non-binary"
*goto naming_nonbinary
#label naming_male
And your first name?
*choice
#Nathan
*set firstname "Nathan"
#Larson
*set firstname "Larson"
#Clint
*set firstname "Clint"
#Let me pick!
*label input_firstname_male
Please create a name:
*input_text firstname
Thanks again to anyone who can help me!