Choice problem in tappable

i had fied my unexpected character error and I wanted to do a tappable in an overlay but this came up:


What should I do?

tappable “WHITE_BLANK” {
NARRATOR (ESTELLE)
Are you sure this is the right colour?
choice
“Yes” {
NARR (ESTELLE)
Awesome.
} “No” {
NARR (ESTELLE)
Hurry, slowpoke
goto skintone
}
}

You shouldn’t have that bracket before “choice”. The choice within a choice (yes/no) needs to have two brackets to close it off. You can include the full wording for the choice that you have for Yes/No btw, I was just lazy.

1 Like

thank you it worked perfectly

1 Like

I just realised that I had another problem sorry @EliseC I had multiple overlays with the same kind of purpose I had for the previous one but now only the first one is working and the other two are not

You don’t need to write “tappable” before each one.

tappable “WHITE_BLANK” {
NARRATOR (ESTELLE)
Are you sure this is the right colour?
choice
“Yes” {
NARR (ESTELLE)
Awesome.
} “No” {
NARR (ESTELLE)
Hurry, slowpoke
goto skintone
}
} “MEDIUM_BLANK” {
NARR (ESTELLE)
Are you sure…
choice
“Yes” {

} “No” {

}
} “NEXT OPTION HERE”