Label doesnt exist

label menu_road

tappable
“START” {
goto start_episode
} “PREVIOUSLY” {
goto previously_episode
} “CUSTOMIZE” {
goto customisation
} “SKIP” {
NARRATOR
Are you sure you want to skip this episode?
choice
“Yes” {
goto end_episode
} “No” {
goto menu_road
}
}

label start_episode
#here your episode
goto end_episode

label previously_episode
#here what happened in the previous episode
goto menu_road

label customisation
#here the cc of your character(s)
goto menu_road

label end_episode
NARRATOR
End of the episode.

1 Like