Need help with tappable overlays!

Hey guys! I recently just started writing my own story and use a tappable overlay for customization.
It was like
tappable “CUSTOMISATION” {
NARRATOR
Who would you like to customise?
choice “Zane.” {
*Inserted customization template *
}
}

Everything was going fine but then an error showed up when I was previewing my script which said that you cannot use labels when using { } and I don’t know what to do. I can’t ecen include FAQs because I have to add a label after one question is finished to go back to the home page of FAQs

Help pleeassee!!

1 Like

Hi!

The problem is, you can’t put labels inside of { }. You’ll have to do it like this:

tappable “CUSTOMISATION” {
NARRATOR
Who would you like to customise?
choice “Zane.” {
goto customization
}
}
label customization
*Inserted customization template *

Thank youu. I’ll try that and let you know if it’s working.

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