I need script help!?

Hey guys, just wondering if anyone can help me. I’m stuck with a part of my script, and I need some help :revolving_hearts:!

Here is the script…

tappable “STARTEPISODE” {
@transition fade out blue
goto start_episode

}“CCEPISODE” {
}
NARRATOR
Customization is |bold| locked |reset| at the moment.
goto menu
}

}“SKIPEPISODE” {

    NARRATOR
Are you sure you want to |bold, italic| skip |reset| this episode?

choice
“Yes, I wan’t to |bold| skip |reset| this episode!” {

    NARRATOR
As you wish.

@transition fade out blue
goto skip_episode

} “No, I |bold| haven’t |reset| read this episode.” {
goto menu
}

The error says…

Blockquote
Unexpected block end: Did you forget the { that goes with this }, or forget to put the word “choice” at the start of this choice option.

I think I added and extra { or } not to sure.
Please help :revolving_hearts:!

You never closed this bracket.

This is not the closer of your tappable, so place an extra bracket here.

There was a misplaced bracket!

tappable “STARTEPISODE” {
@transition fade out blue
goto start_episode

}“CCEPISODE” {

NARRATOR
Customization is |bold| locked |reset| at the moment.
goto menu

}“SKIPEPISODE” {

    NARRATOR
Are you sure you want to |bold, italic| skip |reset| this episode?

choice
“Yes, I wan’t to |bold| skip |reset| this episode!” {

    NARRATOR
As you wish.

@transition fade out blue
goto skip_episode

} “No, I |bold| haven’t |reset| read this episode.” {
goto menu
}
}

@Emma_episode_03

}“SKIPEPISODE” {
}
NARRATOR
Are you sure you want to |bold, italic| skip |reset| this episode?
choice
“Yes, I wan’t to |bold| skip |reset| this episode!” {

    NARRATOR
As you wish.

@transition fade out blue
goto skip_episode

} “No, I |bold| haven’t |reset| read this episode.” {
goto menu
}

It says the error is around the place i highlighted in bold?

@EtherealWitch let me try this out now!