Ending an episode with a button overlay

where am i going wrong?

label outro
INT. OVERLAY SPLASH - OUTTRO with QUESTIONS to 0.982 -14 342 in zone 1 with CREDITS to 1.036 -30 191 in zone 1 with END EPISODE to 1 -17 61 in zone 1

tappable
“QUESTIONS” {
goto QandA
} “CREDITS” {
goto credits
} “END EPISODE” {
goto end_episode
}

label QandA
INT. BLACK - NIGHT

    NARRATOR
What questions would you like to ask?

choice
“What is the 1st question?” {
NARRATOR
The answer goes here.

goto QandA

} “What is the 2nd question?” {
NARRATOR
The answer goes here.

goto QandA

} “What is the 3rd question?” {
NARRATOR
The answer goes here.

goto QandA

} “What is the 4th question?” {
NARRATOR
The answer goes here.

goto QandA

} “I’m done asking questions.” {

	NARRATOR
Are you sure you’re done asking questions?

choice
“Yes, I’m done.” {
} “No, take me back.” {
goto QandA
}}

label credits

################ PUT YOUR CHARACTER INFORMATION HERE #######################
goto outro
}}

label end_episode

################# THIS IS WHERE YOU WRITE THE EPISODE ######################
@pause for 0

I don’t think you need “}}” after “goto outro”

You just need to remove the }} I think!

Maybe you should omit the }}
Unless you’re writing something like:

Choice
“QNA” {
@NAME enters from left to screen right
NAME
Hello guys!
choice
“Click this button”
{ goto QnA
}}

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