My Choices Aren't Working

I have been making a episode for while now and decided to add a choice, so I used one of the templates there ( because I’m lazy) and this is what I got.
INT. WALKINCLOSET - DAY

@LUNA stands screen center
@LUNA faces right
label dressinggame_1
@speechbubble reset

    LUNA (think)
(Let's get out of this scratchy uniform..)

choice (YOU_RUNNING_01)
“Sporty 1”{
@LUNA previews outfit YOU_RUNNING_01
@LUNA is talk_shrug
@pause for a beat
@LUNA starts idle

    LUNA (idle_arms_crossed)
(How about this?)

choice
“This will do” {
@LUNA changes into YOU_RUNNING_01

gain YOU_RUNNING_01
goto afterdg1

} “Hweeellll no” {
@LUNA unpreviews outfit YOU_RUNNING_01
goto dressinggame_1

}“Sporty 2”{
@LUNA previews outfit YOU_RUNNING_02
@LUNA is talk_shrug
@pause for a beat

    LUNA (idle_arms_crossed)
(To be fair it doesn't even matter.)

choice
“Wear this!” { :point_left: THIS LINE IS WRONG!
@LUNA changes into YOU_RUNNING_02

gain YOU_RUNNING_02
goto afterdg1

}“A rat could wear this and it wouldn’t like it”{
@LUNA unpreviews outfit YOU_RUNNING_02
@LUNA starts idle_arms_crossed
goto dressinggame_1

}

label afterdg1

@LUNA starts idle_happy

#}
the problem says "choices must follow dialog immediately, not branches
I have no idea why it’s doing this

pls help

Tanks

After:

choice
“Wear this!”

Put dialogue here and after that put Luna to change her outfit.

1 Like

Something like

choice
“Wear this!”{

LUNA (talk_happy_smile)
I like this one!

@LUNA changes into YOU_RUNNING_02

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

1 Like

Thank you, I’ll try it out

You’re missing 2 brackets.

You need a bracket right above }“Sporty 2” { so that it looks like this:

goto dressinggame_1
}
}“Sporty 2”{

Then you need another bracket at the end right before label afterdg1, so that it looks like this:

goto dressinggame_1

}
}
label afterdg1

1 Like