Help! my menu tappable overlay isn't working

Hello,

I made a game menu that is tappable. My start button works perfectly fine but I can’t tap my skip and customize buttons.

INT.COLORFUL
volume music 0 3000
label game_menu
@speechbubble reset
INT.COLORFUL
@zoom reset

START BUTTON

&ui PASTART CREATE
&ui PASTART opacity 1 in 0
&ui PASTART shifts to 45 335 in zone 1
&ui PASTART scales to 0.784 0.784

CUSTOMIZE BUTTON

&ui PACUSTOMIZE CREATE
&ui PACUSTOMIZE opacity 1 in 0
&ui PACUSTOMIZE scales to 0.820 0.820
&ui PACUSTOMIZE shifts to 32 206 in zone 1

SKIP BUTTON

&ui PASKIP CREATE
&ui PASKIP opacity 1 in 0
&ui PASKIP scales to 0.802 0.802
&ui PASKIP shifts to 29 78 in zone 1

tappable
“PASTART”{
#========== PLACE YOUR STORY AFTER THIS LINE =============

} “MENU CUSTOMIZE” {
@transition fade out black in 1.5
#========== PLACE CC SCRIPT AFTER THIS LINE =============
l NARRATOR
Are you ready to go?

choice
“Yas!” {

    NARRATOR
You look gorgeous!

readerMessage CC template made by @kennedychasewrites :slight_smile:

@transition fade out black 1

} “Nah!” {

    NARRATOR
No worries!

goto customization1

@remove RUBEE

}
#========== END OF CC SCRIPT =============
goto game_menu

} “SKIP BUTTON” {

    NARRATOR
Do you want to |bold|skip this episode 2?

choice
“Yes, let me skip!” {
goto end
} “No, take me back to the menu” {
goto game_menu
}
}

label end
#========== PLACE YOUR END SCRIPT HERE =============

Have you checked if they’re spelt right? And if they are, is the start overlay too large? Sometimes when the overlay is too large, it doesn’t allow the rest to be clicked

This should work:

INT.COLORFUL
@speechbubble reset
@zoom reset
volume music 0 3000
label game_menu

#START BUTTON
&overlay PASTART create
&overlay PASTART opacity 1 in 0
&overlay PASTART shifts to 45 335 in zone 1
&overlay PASTART scales to 0.784 0.784

#CUSTOMIZE BUTTON
&overlay PACUSTOMIZE create
&overlay PACUSTOMIZE opacity 1 in 0
&overlay PACUSTOMIZE scales to 0.820 0.820
&overlay PACUSTOMIZE shifts to 32 206 in zone 1

#SKIP
&overlay PASKIP create
&overlay PASKIP opacity 1 in 0
&overlay PASKIP scales to 0.802 0.802
&overlay PASKIP shifts to 29 78 in zone 1

tappable
“PASTART”{
#========== PLACE YOUR STORY AFTER THIS LINE =============

} “PACUSTOMIZE” {
&overlay PASTART opacity 0 in 1.5
&overlay PACUSTOMIZE opacity 0 in 1.5
&overlay PASKIP opacity 0 in 1.5
@transition fade out black in 1.5
label customization1
#========== PLACE CC SCRIPT AFTER THIS LINE =============

    NARRATOR
Are you ready to go?

choice
“Yas!” {

    NARRATOR
You look gorgeous!

readerMessage CC template made by @kennedychasewrites :slight_smile:

@transition fade out black 1
goto game_menu

} “Nah!” {

    NARRATOR
No worries!

goto customization1

@remove RUBEE

}
#========== END OF CC SCRIPT =============
goto game_menu

} “PASKIP” {

    NARRATOR
Do you want to |bold|skip this episode 2?

choice “Yes, let me skip!” {
goto end
} “No, take me back to the menu” {
goto game_menu
}
}

label end
#========== PLACE YOUR END SCRIPT HERE =============

thank you!!!

1 Like