Start and Skip code

Hey guys. I’ve already made a tappable menu with a start, customization, and skip button.
I’m just not sure what code I should use for the start and skip button. So basically what I need is the code to start the episode and the code to skip the episode. Does anyone know what those are? Please let me know if you do! Thank you x

Basically you will need to make the buttons tappable, and then create a label and goto to prompt the specific commands. So it will be something like this:

@overlay START create
@overlay START opacity 1 in 0
@overlay SKIP create
@overlay SKIP opacity 1 in 0

tappable
“START” {
goto start_episode
} “SKIP” {
goto skip_episode
}

And then at the start of your script you would put:

label start_episode

And at the end you would put:

label skip_episode

4 Likes

aww thank you so much :star_struck: I was so confused by that :sweat_smile:

1 Like

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