Error: Unexpected block end

I’m doing a Q&A part in my script and when I tried to save it, this happened.

Is this a nestled choice? Or is that the whole choice section?

It’s just one choice.

there’s a label QandA after @BOY faces right, delete it.

I did. I still gives me the error.
Here is the full choice script if it helps. (I have two of the same question because I had to switch the character so he would have a name, I don’t know if that’s the problem?)
NARRATOR
What questions would you like to ask?
choice
“Question 1” {

#[What’s your name?]

YOU (talk_sit_armscrossed_neutral_loop)
What’s your name?

NONAME (talk_sit_reassure_happy)
I’m [BOYFIRSTNAME]

@NONAME is idle_sit_neutral_loop

YOU (talk_sit_coy)
Cool, I’m [FIRSTNAME] and that’s [FIRSTNAME2]

INT. APARTMENT LIVING ROOM - NIGHT

@BOY spot 1.055 171 194 in zone 2 AND BOY does it while idle_sit_serious_loop AND YOU faces right AND YOU spot 1.055 56 200 in zone 2 AND YOU does it while idle_sit_serious_loop AND BFF spot 1.055 280 176 in zone 2 AND BFF does it while idle_sit_leanback_unimpressed_loop

@cut to zone 2

@BOY faces right

label QandA

}

    NARRATOR
What questions would you like to ask?

choice
“Question 1” {

#[What’s your name?]

YOU (talk_sit_armscrossed_neutral_loop)
What’s your name?

NONAME (talk_sit_reassure_happy)
I’m [BOYFIRSTNAME]

@NONAME is idle_sit_neutral_loop

YOU (talk_sit_coy)
Cool, I’m [FIRSTNAME] and that’s [FIRSTNAME2]

@YOU is idle_sit_neutral_loop

goto QandA

} “Question 2” {

#[What are you doing here?]

BFF (talk_sit_doubtful)
What are you doing here?

@BOY faces right

BOY (talk_sit_coy)
I mean, do you want the honest answer, or-

BFF (talk_sit_shrug_neutral)
I mean that’d be nice.

BOY (talk_sit_crossarms_neutral)
Long story short, I guess I’m a fugitive…?

@BOY is idle_sit_serious_loop

@BFF is idle_sit_sad_loop
@YOU is idle_sit_leanback_unimpressed_loop

BOY (talk_sit_shrug_neutral)
Please don’t look at me that way…
I’m being framed.

@BOY faces left

YOU (talk_sit_shrug_neutral)
How do we know you’re not lying?

@YOU is idle_sit_serious_loop

BOY (talk_sit_crossarms_neutral)
I swear to you if you help be then I can prove it to you.

@BOY is idle_sit_anklescrossed_neutral_loop

goto QandA

} “Question 3” {

#[What do you need from us?]

YOU (talk_sit_shrug_neutral)
What do you need from us?

@YOU is idle_sit_armcrossed_unimpressed_loop

BOY (talk_sit_coy)
I know this is too much to ask but I really need a place to stay.
I- I can help around and do whatever I can in return.

@BOY is idle_sit_serious_loop

YOU (talk_sit_shrug_neutral)
OKa-

@YOU is idle_sit_armcrossed_unimpressed_loop

BFF (talk_sit_shrug_neutral)
I think me and [FIRSTNAME] should talk about this first.
Excuse us.

goto QandA

} “I’m done asking questions” {
#continue
}

You can’t have a label inside of a choice:

Like @Apes said, remove it

Moved to Directing Helps and Tips. :wink:

It still doesn’t work?

Let’s see the code you have now

You removed the wrong “label QandA”

Add in the italic part, and remove the bolded part.

1 Like

Thank you, it works now!