Outfit Change Help!

Ugh, I’m getting fed up with this lol.

So I’m now wanting another changing outfit option which the below is the coding I have.

HOWEVER, when I play this error comes up (Duplicate Label “MENU”)

ALSO, my previous outfit change appears on the preview. The previous outfit change OPTION is where the reader can choose which uniform, but I’m confused why she’s changing into one of the uniforms and the coding isn’t showing the one as I have below and in the screenshot. (See screenshot below).

Does this make sense?

label MENU

CASEY (think_rubchin)
What should I wear for the party?

choice
“Lilac Dress”{
@CASEY changes into CASEY_party
@CASEY is idle_happy_pose
goto DECIDE
}
“Black Skirt”{
@CASEY changes into CASEY_party2
@CASEY is idle_happy_pose
goto DECIDE
}
“White Floral Dress”{
@CASEY changes into CASEY_party3
@CASEY is idle_happy_pose
goto DECIDE
}
“Blue Sequin Skirt and Crop”{
@CASEY changes into CASEY_party4
@CASEY is idle_happy_pose
goto DECIDE
}
“Yellow Crop and Jeans”{
@CASEY changes into CASEY_party5
@CASEY is idle_happy_pose
goto DECIDE
}

label DECIDE
CASEY (idle_happy_pose)
Should I wear this?

choice
“Yes, this will do.”{
continue
}
“No, try something else.”{
goto MENU
}

At the start it should be

label label_MENU

And at the end it should be

goto label_MENU

Moved to Directing Helps and Tips since it involves coding/scripting. Make sure to check out our Forum Tutorial for more info about where to correctly create topics. :wink:

There’s nothing wrong with the label name. Duplicate label means that you already used this label in this episode, change it to MENU1 or something else

Thank you for a reply.

I realised this the minute I posted.