Tappable Choices Help Needed | Error

So I am trying to use tappable overlays. But I get an error when every I put the dressing game inside.
It says I can’t use a label in “if, elif, or else”, but I’m not using that system.
When I remove the dressing game and put in place holder text the error disappears. But when I try to test the overlays with just filler text it pauses at the text right become the line “tappable”. Then no matter how many times I click on the preview it doesn’t work. It does the same on the app.

Here is the script:

tappable

“MAKEUP” {

    NARRATOR

Place holder stuff

} “HAIR” {

    NARRATOR

Place holder stuff

} “OUTFIT” {

label dressing_game_1

    NAME

What should I wear?

choice (OUTFIT_1)

“Navy Blue Queen” {

@NAME changes into NAME_workout_navy_blue_queen

    NAME (admire_happy)

I look amazing!

    NAME

Do I want to wear this one?

choice

“It’s perfect!” {

gain Flag_basic

    NAME (flirt_wink_atcamera)

It's perfect!

    NARRATOR

I agree, you look great.

} “No, I want to try on the others!” {

goto dressing_game_1

}

} “Red Wine” {

@NAME changes into NAME_workout_red_wine

    NAME (admire_happy)

I look amazing!

And I'm semi-matching Hazel

    NAME

Do I want to wear this one?

choice

“It’s perfect!” {

gain Flag_nice

    NAME (flirt_wink_atcamera)

It's perfect!

    NARRATOR

I agree, you look great.

} “No, I want to try on the others!” {

goto dressing_game_1

}

} “Pink With Care” {

@NAME changes into NAME_workout_pink_with_care

    NAME (admire_happy)

I look amazing!

    NAME

Do I want to wear this one?

choice

“It’s perfect!” {

gain Flag_basic

    NAME (flirt_wink_atcamera)

It's perfect!

    NARRATOR

I agree, you look great.

} “No, I want to try on the others!” {

goto dressing_game_1

}

}

}

@Dara.Amarie

Try removing the space after it says “tappable”.

1 Like

You cannot have labels inside of brackets. You will need to place that label outside of the choice/tappable bracket and put a goto inside those brackets that lead to that label

1 Like

Thank you.

Thank you I’ll try that.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.