I need help with branching choices!

I have no idea what I’m doing with this and desperately need help.
Branching with giving an option to go back and change your decision, in this case, it has do with changing outfits.

Here is my script:
LOREN WATSON (think_rubchin)
(What should I wear today?)

choice “Sk1mpy” {@LOREN WATSON changes into SKIMPY
LOREN WATSON (dustoff_neutral_loop)
Ya like?
choice “Yes” { LOREN WATSON (primp_neutral)
Time for my hair!
}

“No” { “Casual” {@LOREN WATSON changes into LS CASUAL
LOREN WATSON (dustoff_neutral_loop)
Too casual?
} “Girly” {@LOREN WATSON changes into GIRLYY
LOREN WATSON (dustoff_neutral_loop)
More of a Tomboy?

} “Casual” {@LOREN WATSON changes into LS CASUAL
LOREN WATSON (dustoff_neutral_loop)
Too casual?
} “Girly” {@LOREN WATSON changes into GIRLYY
LOREN WATSON (dustoff_neutral_loop)
More of a Tomboy?
}

Yes, I know I did the “No” option wrong, which is what I need help with! How can I make it go back to those three choices? I also did the “Yes” option wrong…

Hey hun,
I think, you can find your answers on this website :point_down:t2:

And I believe you need to check this page of it :point_down:t2:

Stay safe :butterfly:

1 Like

Thank you

2 Likes

Try this:
label clothes
LOREN WATSON (think_rubchin)
(What should I wear today?)

choice
“Sk1mpy” {
@LOREN WATSON changes into SKIMPY

LOREN WATSON (dustoff_neutral_loop)
Ya like?

choice
“Yes” {
LOREN WATSON (primp_neutral)
Time for my hair!
}
“No” {
goto clothes
}} “Casual” {
@LOREN WATSON changes into LS CASUAL

LOREN WATSON (dustoff_neutral_loop)
Too casual?

choice
“Yes” {
LOREN WATSON (primp_neutral)
Time for my hair!
}
“No” {
goto clothes
}} “Girly” {
@LOREN WATSON changes into GIRLYY

LOREN WATSON (dustoff_neutral_loop)
More of a Tomboy?

choice
“Yes” {
LOREN WATSON (primp_neutral)
Time for my hair!
}
“No” {
goto clothes
}}

1 Like

Oh my god, thank you so much!! That helped a lot

1 Like