Bad Label help please

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!

I am not near my own code, but I think it should be *label for the label itself, not #.

3 Likes

Yep. * to execute commands.
Also, the label under “Let me pick my name” is unnecessary.

1 Like

Ok. Thank you so much, this worked for me

1 Like