Can someone Pease help me

if you know how to do the game menu please help. can anyone tell me what i did wrong. where my ‘START”{ is, they said its wrong can anyone help

INT. GAMEPANEL

@overlay START create from SCREEN BUTTON AND overlay START shifts to 64 381
@overlay CUSTOMIZE create from SCREEN BUTTON AND overlay CUSTOMIZE shifts to 64 322
@overlay SKIP create from SCREEN BUTTON AND overlay SKIP shifts to 64 263

label GAME_MENU

tappable
“START”.{

goto START
{“CUSTOMIZE”{

goto CUSTOMIZE
{“SKip”{

goto SKIP
{

label CUSTOMIZE

add the customization templete i use

    NARR
Customize     

goto GAME_MENU

label START
#here is where i start my story
NARR
Start

label SKIP

The end of your script

    NARR 
 Skip

at the end of the option, you should have a } instead. example
“START” {
goto start
} “CUSTOMIZE” {
goto customize
} “SKIP” {
goto skip
}