Choice error help plss!

this is my error:
Unexpected block end: Did you forget the { which goes with }, or forget to put the word “choice” at the start of this choice option.

heres my script:

    AUTHOR (applaud_happy_offset_loop)

Question time!

label qandaconfirmation
NARR

Would you like to skip the Q and A?

choice
“Yes, I’ve already looked through them.” {
goto endofchapter
}

} “No, I would like to go through the Q and A.” {
goto continuewithqanda

@pause for a beat

label confirmation

here is what it should look like.

} “No, I would like to go through the Q and A.” {
goto continuewithqanda
}

Copy that into your script, or simply add the }, which is what you were missing.

2 Likes

it still says error

1 Like

Delete the “}” here, it should be fine after that.

1 Like

choice
“Yes, I’ve already looked through them.” {
goto endofchapter

} “No, I would like to go through the Q and A.” {
goto continuewithqanda
}
@pause for a beat

label confirmation

Try this one

2 Likes