Kinda Complicated Scripting Question (Points, overlays, tappable)

Okay, let me explain really briefly what the script is supposed to do:

There will be 16 overlays on the screen. The player taps 2, and those two overlays should disappear. Then there are 14 overlays left and the player taps 2 and they disappear, and so on and so forth until all the overlays are gone. I’ve been using points to tell the overlays when to disappear, and it usually works for the first maybe 6 that the player taps, but then they stop disappearing (even though they’re no longer tappable).
I don’t know why. It doesn’t seem to matter what order I tap them in; it stops disappearing after the first few. I don’t know if anyone can help me, and it looks way more complicated than it is, but I would be eternally grateful if someone could figure it out.
This code is literally mandatory for my story to continue.

I’ll post it in the next reply so this post doesn’t get too cluttered.

*Note: I used stars in place of @ symbols because the forum thought I was trying to take like 100 people.

1 Like

label week1_choice

NARR

Time to choose your matches!

if (BETSY < 1) {

&overlay BETSY create

&overlay BETSY opacity 1 in 0

&overlay 5156305046798336_BETSY shifts to 233 455 in zone 2

&overlay 5156305046798336_BETSY scales to 0.523 0.523

&overlay BETSY moves to layer 6

} else {

#&overlay BETSY clear

}

if (CHARLES < 1) {

&overlay CHARLES create

&overlay CHARLES opacity 1 in 0

&overlay 5156305046798336_CHARLES shifts to 65 458 in zone 2

&overlay 5156305046798336_CHARLES scales to 0.468 0.468

&overlay CHARLES moves to layer 6

} else {

#&overlay CHARLES clear

}

if (CHARLOTTE < 1) {

&overlay CHARLOTTE create

&overlay CHARLOTTE opacity 1 in 0

&overlay 5156305046798336_CHARLOTTE shifts to 191 356 in zone 2

&overlay 5156305046798336_CHARLOTTE scales to 0.400 0.400

&overlay CHARLOTTE moves to layer 6

} else {

#&overlay CHARLOTTE clear

}

if (FANNY < 1) {

&overlay FANNY create

&overlay FANNY opacity 1 in 0

&overlay 5156305046798336_FANNY shifts to 5 365 in zone 2

&overlay 5156305046798336_FANNY scales to 0.482 0.482

&overlay FANNY moves to layer 6

} else {

#&overlay FANNY clear

}

if (GEORGE < 1) {

&overlay GEORGE create

&overlay GEORGE opacity 1 in 0

&overlay 5156305046798336_GEORGE shifts to 70 176 in zone 2

&overlay 5156305046798336_GEORGE scales to 0.523 0.523

&overlay GEORGE moves to layer 6

} else {

#&overlay GEORGE clear

}

if (HENRY < 1) {

&overlay HENRY create

&overlay HENRY opacity 1 in 0

&overlay 5156305046798336_HENRY shifts to 91 50 in zone 2

&overlay 5156305046798336_HENRY scales to 0.536 0.536

&overlay HENRY moves to layer 6

} else {

#&overlay HENRY clear

}

if (JAMES < 1) {

&overlay JAMES create

&overlay JAMES opacity 1 in 0

&overlay 5156305046798336_JAMES shifts to 35 278 in zone 2

&overlay 5156305046798336_JAMES scales to 0.400 0.400

&overlay JAMES moves to layer 6

} else {

#&overlay JAMES clear

}

if (JANE < 1) {

&overlay JANE create

&overlay JANE opacity 1 in 0

&overlay 5156305046798336_JANE shifts to 150 455 in zone 2

&overlay 5156305046798336_JANE scales to 0.495 0.495

&overlay JANE moves to layer 6

} else {

#&overlay JANE clear

}

if (JOHN < 1) {

&overlay JOHN create

&overlay JOHN opacity 1 in 0

&overlay 5156305046798336_JOHN shifts to 238 277 in zone 2

&overlay 5156305046798336_JOHN scales to 0.495 0.495

&overlay JOHN moves to layer 6

} else {

#&overlay JOHN clear

}

if (KATE < 1) {

&overlay KATE create

&overlay KATE opacity 1 in 0

&overlay 5156305046798336_KATE shifts to 238 150 in zone 2

&overlay 5156305046798336_KATE scales to 0.455 0.455

&overlay KATE moves to layer 6

} else {

#&overlay KATE clear

}

if (MARY < 1) {

&overlay MARY create

&overlay MARY opacity 1 in 0

&overlay 5156305046798336_MARY shifts to 141 278 in zone 2

&overlay 5156305046798336_MARY scales to 0.441 0.441

&overlay MARY moves to layer 6

} else {

#&overlay MARY clear

}

if (NAN < 1) {

&overlay NAN create

&overlay NAN opacity 1 in 0

&overlay 5156305046798336_NAN shifts to 0 174 in zone 2

&overlay 5156305046798336_NAN scales to 0.427 0.427

&overlay NAN moves to layer 6

} else {

#&overlay NAN clear

}

if (ROBERT < 1) {

&overlay ROBERT create

&overlay ROBERT opacity 1 in 0

&overlay 5156305046798336_ROBERT shifts to 183 55 in zone 2

&overlay 5156305046798336_ROBERT scales to 0.495 0.495

&overlay ROBERT moves to layer 6

} else {

#&overlay ROBERT clear

}

if (SUSAN < 1) {

&overlay SUSAN create

&overlay SUSAN opacity 1 in 0

&overlay 5156305046798336_SUSAN shifts to 161 181 in zone 2

&overlay 5156305046798336_SUSAN scales to 0.523 0.523

&overlay SUSAN moves to layer 6

} else {

#&overlay SUSAN clear

}

if (THOMAS < 1) {

&overlay THOMAS create

&overlay THOMAS opacity 1 in 0

&overlay 5156305046798336_THOMAS shifts to 82 355 in zone 2

&overlay 5156305046798336_THOMAS scales to 0.482 0.482

&overlay THOMAS moves to layer 6

} else {

#&overlay THOMAS clear

}

if (WILLIAM < 1) {

&overlay WILLIAM create

&overlay WILLIAM opacity 1 in 0

&overlay 5156305046798336_WILLIAM shifts to 7 52 in zone 2

&overlay 5156305046798336_WILLIAM scales to 0.495 0.495

&overlay WILLIAM moves to layer 6

} else {

#&overlay WILLIAM clear

}

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

tappable

“JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

NARR

That’s his sister! Choose again.

*CHARLES =0

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

*WEEK1 +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “JANE” {

*JANE +1

&overlay JANE clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

NARR

That’s her brother! Choose again.

*JANE =0

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

*WEEK1 +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “BETSY” {

*BETSY +1

&overlay BETSY clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

NARR

That’s her sister! Choose again.

*BETSY =0

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

*WEEK1 +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “FANNY” {

*FANNY +1

&overlay FANNY clear

tappable

“CHARLES” {

NARR

That’s her brother! Choose again.

*FANNY =0

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

*WEEK1 +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

*WEEK1 +1

&overlay FANNY clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “JAMES” {

*JAMES +1

*WEEK1 +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

NARR

That’s her sister! Choose again.

*CHARLOTTE =0

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

NARR

That’s her brother! Choose again.

*CHARLOTTE =0

goto week1_choice

}

} “JAMES” {

*JAMES +1

&overlay JAMES clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

*WEEK1 +1

&overlay CHARLOTTE clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

NARR

That’s his sister! Choose again.

*JAMES =0

goto week1_choice

} “WILLIAM” {

NARR

That’s his brother! Choose again.

*JAMES =0

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “MARY” {

*MARY +1

&overlay MARY clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

NARR

That’s her brother! Choose again.

*MARY =0

goto week1_choice

} “SUSAN” {

*SUSAN +1

*WEEK1 +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “JOHN” {

*JOHN +1

&overlay JOHN clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

NARR

That’s his sister! Choose again.

*JOHN =0

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

*WEEK1 +1

&overlay ROBERT clear

goto week1_choice

}

} “NAN” {

*NAN +1

&overlay NAN clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

NARR

That’s her sister! Choose again.

*NAN =0

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

*WEEK1 +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

NARR

That’s her brother! Choose again.

*NAN =0

goto week1_choice

}

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

NARR

That’s his sister! Choose again.

*GEORGE =0

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

*WEEK1 +1

&overlay NAN clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

NARR

That’s her sister! Choose again.

*SUSAN =0

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

*WEEK1 +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “KATE” {

*KATE +1

&overlay KATE clear

tappable

“CHARLES” {

*CHARLES +1

*WEEK1 +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

NARR

That’s her brother! Choose again.

*KATE =0

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “WILLIAM” {

NARR

That’s her brother! Choose again.

*KATE =0

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

*WEEK1 +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

NARR

That’s his brother! Choose again.

*WILLIAM =0

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

NARR

That’s his sister! Choose again.

*WILLIAM =0

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “HENRY” {

*HENRY +1

&overlay HENRY clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

*WEEK1 +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

*CHARLOTTE +1

&overlay CHARLOTTE clear

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

*NAN +1

&overlay NAN clear

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

goto week1_choice

}

} “ROBERT” {

*ROBERT +1

&overlay ROBERT clear

tappable

“CHARLES” {

*CHARLES +1

&overlay CHARLES clear

goto week1_choice

} “JANE” {

*JANE +1

&overlay JANE clear

goto week1_choice

} “BETSY” {

*BETSY +1

&overlay BETSY clear

goto week1_choice

} “FANNY” {

*FANNY +1

&overlay FANNY clear

goto week1_choice

} “THOMAS” {

*THOMAS +1

&overlay THOMAS clear

goto week1_choice

} “CHARLOTTE” {

NARR

That’s his sister! Choose again.

*ROBERT =0

goto week1_choice

} “JAMES” {

*JAMES +1

&overlay JAMES clear

goto week1_choice

} “MARY” {

*MARY +1

&overlay MARY clear

goto week1_choice

} “JOHN” {

*JOHN +1

*WEEK1 +1

&overlay JOHN clear

goto week1_choice

} “NAN” {

NARR

That’s his sister! Choose again.

*ROBERT =0

goto week1_choice

} “GEORGE” {

*GEORGE +1

&overlay GEORGE clear

goto week1_choice

} “SUSAN” {

*SUSAN +1

&overlay SUSAN clear

goto week1_choice

} “KATE” {

*KATE +1

&overlay KATE clear

goto week1_choice

} “WILLIAM” {

*WILLIAM +1

&overlay WILLIAM clear

goto week1_choice

} “HENRY” {

*HENRY +1

&overlay HENRY clear

goto week1_choice

}

} else {

NARR

Have you made all your selections?

choice “Yes, I’m done.” {

} “No, I missed someone!” {

goto week1_choice

}

}

I think I’ve worked out what you were doing and I’m not sure why they weren’t disappearing but it might have been the unnecessary else’s you were using?
I’ve reworked your code so there are just two tappable sections instead of seventeen.

Code
#Resets all character points.
@BETSY =0
@CHARLES =0
@CHARLOTTE =0
@FANNY =0
@GEORGE =0
@HENRY =0
@JAMES =0
@JANE =0
@JOHN =0
@KATE =0
@MARY =0
@NAN =0
@ROBERT =0
@SUSAN =0
@THOMAS =0
@WILLIAM =0

#Creates overlays
@overlay BETSY create
@overlay BETSY opacity 1
@overlay BETSY shifts to 233 455 in zone 2
@overlay BETSY scales to 0.523 0.523
@overlay BETSY moves to layer 6
@overlay CHARLES create
@overlay CHARLES opacity 1
@overlay CHARLES shifts to 65 458 in zone 2
@overlay CHARLES scales to 0.468 0.468
@overlay CHARLES moves to layer 7
@overlay CHARLOTTE create
@overlay CHARLOTTE opacity 1
@overlay CHARLOTTE shifts to 191 356 in zone 2
@overlay CHARLOTTE scales to 0.400 0.400
@overlay CHARLOTTE moves to layer 8
@overlay FANNY create
@overlay FANNY opacity 1
@overlay FANNY shifts to 5 365 in zone 2
@overlay FANNY scales to 0.482 0.482
@overlay FANNY moves to layer 9
@overlay GEORGE create
@overlay GEORGE opacity 1
@overlay GEORGE shifts to 70 176 in zone 2
@overlay GEORGE scales to 0.523 0.523
@overlay GEORGE moves to layer 10
@overlay HENRY create
@overlay HENRY opacity 1
@overlay HENRY shifts to 91 50 in zone 2
@overlay HENRY scales to 0.536 0.536
@overlay HENRY moves to layer 11
@overlay JAMES create
@overlay JAMES opacity 1
@overlay JAMES shifts to 35 278 in zone 2
@overlay JAMES scales to 0.400 0.400
@overlay JAMES moves to layer 12
@overlay JANE create
@overlay JANE opacity 1
@overlay JANE shifts to 150 455 in zone 2
@overlay JANE scales to 0.495 0.495
@overlay JANE moves to layer 13
@overlay JOHN create
@overlay JOHN opacity 1
@overlay JOHN shifts to 238 277 in zone 2
@overlay JOHN scales to 0.495 0.495
@overlay JOHN moves to layer 14
@overlay KATE create
@overlay KATE opacity 1
@overlay KATE shifts to 238 150 in zone 2
@overlay KATE scales to 0.455 0.455
@overlay KATE moves to layer 15
@overlay MARY create
@overlay MARY opacity 1
@overlay MARY shifts to 141 278 in zone 2
@overlay MARY scales to 0.441 0.441
@overlay MARY moves to layer 16
@overlay NAN create
@overlay NAN opacity 1
@overlay NAN shifts to 0 174 in zone 2
@overlay NAN scales to 0.427 0.427
@overlay NAN moves to layer 17
@overlay ROBERT create
@overlay ROBERT opacity 1
@overlay ROBERT shifts to 183 55 in zone 2
@overlay ROBERT scales to 0.495 0.495
@overlay ROBERT moves to layer 18
@overlay SUSAN create
@overlay SUSAN opacity 1
@overlay SUSAN shifts to 161 181 in zone 2
@overlay SUSAN scales to 0.523 0.523
@overlay SUSAN moves to layer 19
@overlay THOMAS create
@overlay THOMAS opacity 1
@overlay THOMAS shifts to 82 355 in zone 2
@overlay THOMAS scales to 0.482 0.482
@overlay THOMAS moves to layer 20
@overlay WILLIAM create
@overlay WILLIAM opacity 1
@overlay WILLIAM shifts to 7 52 in zone 2
@overlay WILLIAM scales to 0.495 0.495
@overlay WILLIAM moves to layer 21

#First tappable
label week1_choice
NARR
Time to choose your matches!
@pause for 0.1

#Characters that equal two were the selected character for the last round. This sets them to one.
if (CHARLES = 2){
@CHARLES =1
}
if (JANE = 2){
@JANE =1
}
if (BETSY = 2){
@BETSY =1
}
if (FANNY = 2){
@FANNY =1
}
if (THOMAS = 2){
@THOMAS =1
}
if (CHARLOTTE = 2){
@CHARLOTTE =1
}
if (JAMES = 2){
@JAMES =1
}
if (MARY = 2){
@MARY =1
}
if (JOHN = 2){
@JOHN =1
}
if (NAN = 2){
@NAN =1
}
if (GEORGE = 2){
@GEORGE =1
}
if (SUSAN = 2){
@SUSAN =1
}
if (KATE = 2){
@KATE =1
}
if (WILLIAM = 2){
@WILLIAM =1
}
if (HENRY = 2){
@HENRY =1
}
if (ROBERT = 2){
@ROBERT =1
}

tappable
"CHARLES" if (CHARLES < 1){
	@CHARLES =2
	&overlay CHARLES opacity 0 in 0.5
	goto week1_choice2
"JANE" if (JANE < 1){
	@JANE =2
	&overlay JANE opacity 0 in 0.5
	goto week1_choice2
}
"BETSY" if (BETSY < 1){
	@BETSY =2
	&overlay BETSY opacity 0 in 0.5
	goto week1_choice2
}
"FANNY" if (FANNY < 1){
	@FANNY =2
	&overlay FANNY opacity 0 in 0.5
	goto week1_choice2
}
"THOMAS" if (THOMAS < 1){
	@THOMAS =2
	&overlay THOMAS opacity 0 in 0.5
	goto week1_choice2
}
"CHARLOTTE" if (CHARLOTTE < 1){
	@CHARLOTTE =2
	&overlay CHARLOTTE opacity 0 in 0.5
	goto week1_choice2
}
"JAMES" if (JAMES < 1){
	@JAMES =2
	&overlay JAMES opacity 0 in 0.5
	goto week1_choice2
}
"MARY" if (MARY < 1){
	@MARY =2
	&overlay MARY opacity 0 in 0.5
	goto week1_choice2
}
"JOHN" if (JOHN < 1){
	@JOHN =2
	&overlay JOHN opacity 0 in 0.5
	goto week1_choice2
}
"NAN" if (NAN < 1){
	@NAN =2
	&overlay NAN opacity 0 in 0.5
	goto week1_choice2
}
"GEORGE" if (GEORGE < 1){
	@GEORGE =2
	&overlay GEORGE opacity 0 in 0.5
	goto week1_choice2
}
"SUSAN" if (SUSAN < 1){
	@SUSAN =2
	&overlay SUSAN opacity 0 in 0.5
	goto week1_choice2
}
"KATE" if (KATE < 1){
	@KATE =2
	&overlay KATE opacity 0 in 0.5
	goto week1_choice2
}
"WILLIAM" if (WILLIAM < 1){
	@WILLIAM =2
	&overlay WILLIAM opacity 0 in 0.5
	goto week1_choice2
}
"HENRY" if (HENRY < 1){
	@HENRY =2
	&overlay HENRY opacity 0 in 0.5
	goto week1_choice2
}
"ROBERT" if (ROBERT < 1){
	@ROBERT =2
	&overlay ROBERT opacity 0 in 0.5
	goto week1_choice2
}
else{
	NARR
	Have you made all your selections?
	choice
	"Yes, I’m done."{
		goto end_week1_choice
	}
	"No, I missed someone!"{
		goto week1_choice
	}
}

#Second tappable
label week1_choice2
tappable
"CHARLES" if (CHARLES < 1){
	if (FANNY = 2){
		NARR
		That’s her brother! Choose again.
		@FANNY =0
		&overlay FANNY opacity 1 in 0.5
		goto week1_choice
	}
	if (KATE =2){
		@WEEK1 +1
	}
	@CHARLES =1
	&overlay CHARLES opacity 0 in 0.5
	goto week1_choice
"JANE" if (JANE < 1){
	if (JOHN = 2){
		NARR
		That’s his sister! Choose again.
		@JOHN =0
		&overlay JOHN opacity 1 in 0.5
		goto week1_choice
	}
	if (WILLIAM =2){
		@WEEK1 +1
	}
	@JANE =1
	&overlay JANE opacity 0 in 0.5
	goto week1_choice
}
"BETSY" if (BETSY < 1){
	if (SUSAN = 2){
		NARR
		That’s her sister! Choose again.
		@SUSAN =0
		&overlay SUSAN opacity 1 in 0.5
		goto week1_choice
	}
	if (HENRY = 2){
		@WEEK1 +1
	}
	@BETSY =1
	&overlay BETSY opacity 0 in 0.5
	goto week1_choice
}
"FANNY" if (FANNY < 1){
	if (CHARLES = 2){
		NARR
		That’s his sister! Choose again.
		@CHARLES =0
		&overlay CHARLES opacity 1 in 0.5
		goto week1_choice
	}
	if (THOMAS = 2){
		@WEEK1 +1
	}
	@FANNY =1
	&overlay FANNY opacity 0 in 0.5
	goto week1_choice
}
"THOMAS" if (THOMAS < 1){
	if (FANNY = 2){
		@WEEK1 +1
	}
	@THOMAS =1
	&overlay THOMAS opacity 0 in 0.5
	goto week1_choice
}
"CHARLOTTE" if (CHARLOTTE < 1){
	if (NAN = 2){
		NARR
		That’s her sister! Choose again.
		@NAN =0
		&overlay NAN opacity 1 in 0.5
		goto week1_choice
	}
	if (ROBERT = 2){
		NARR
		That’s his sister! Choose again.
		@ROBERT =0
		&overlay ROBERT opacity 1 in 0.5
		goto week1_choice
	}
	if (JAMES = 2){
		@WEEK1 +1
	}
	@CHARLOTTE +1
	&overlay CHARLOTTE opacity 0 in 0.5
	goto week1_choice
}
"JAMES" if (JAMES < 1){
	if (KATE = 2){
		NARR
		That’s her brother! Choose again.
		@KATE =0
		&overlay KATE opacity 1 in 0.5
		goto week1_choice
	}
	if (WILLIAM = 2){
		NARR
		That’s his brother! Choose again.
		@WILLIAM =0
		&overlay WILLIAM opacity 1 in 0.5
		goto week1_choice
	}
	if (CHARLOTTE = 2){
		@WEEK1 +1
	}
	@JAMES =1
	&overlay JAMES opacity 0 in 0.5
	goto week1_choice
}
"MARY" if (MARY < 1){
	if (GEORGE = 2){
		NARR
		That’s his sister! Choose again.
		@GEORGE =0
		&overlay GEORGE opacity 1 in 0.5
		goto week1_choice
	}
	if (SUSAN = 2){
		@WEEK1 +1
	}
	@MARY =1
	&overlay MARY opacity 0 in 0.5
	goto week1_choice
}
"JOHN" if (JOHN < 1){
	if (JANE = 2){
		NARR
		That’s her brother! Choose again.
		@JANE =0
		&overlay JANE opacity 1 in 0.5
		goto week1_choice
	}
	if (ROBERT = 2){
		@WEEK1 +1
	}
	@JOHN =1
	&overlay JOHN opacity 0 in 0.5
	goto week1_choice
}
"NAN" if (NAN < 1){
	if (CHARLOTTE = 2){
		NARR
		That’s her sister! Choose again.
		@CHARLOTTE =0
		&overlay CHARLOTTE opacity 1 in 0.5
		goto week1_choice
	}
	if (ROBERT = 2){
		NARR
		That’s his sister! Choose again.
		@ROBERT =0
		&overlay ROBERT opacity 1 in 0.5
		goto week1_choice
	}
	if (GEORGE = 2){
		@WEEK1 +1
	}
	@NAN =1
	&overlay NAN opacity 0 in 0.5
	goto week1_choice
}
"GEORGE" if (GEORGE < 1){
	if (MARY = 2){
		NARR
		That’s her brother! Choose again.
		@MARY =0
		&overlay MARY opacity 1 in 0.5
		goto week1_choice
	}
	if (NAN = 2){
		@WEEK1 +1
	}
	@GEORGE =1
	&overlay GEORGE opacity 0 in 0.5
	goto week1_choice
}
"SUSAN" if (SUSAN < 1){
	if (BETSY = 2){
		NARR
		That’s her sister! Choose again.
		@BETSY =0
		&overlay BETSY opacity 1 in 0.5
		goto week1_choice
	}
	if (MARY = 2){
		@WEEK1 +1
	}
	@SUSAN =1
	&overlay SUSAN opacity 0 in 0.5
	goto week1_choice
}
"KATE" if (KATE < 1){
	if (JAMES = 2){
		NARR
		That’s his sister! Choose again.
		@JAMES =0
		&overlay JAMES opacity 1 in 0.5
		goto week1_choice
	}
	if (WILLIAM = 2){
		NARR
		That’s his sister! Choose again.
		@WILLIAM =0
		&overlay WILLIAM opacity 1 in 0.5
		goto week1_choice
	}
	if (CHARLES = 2){
		@WEEK1 +1
	}
	@KATE =1
	&overlay KATE opacity 0 in 0.5
	goto week1_choice
}
"WILLIAM" if (WILLIAM < 1){
	if (JAMES = 2){
		NARR
		That’s his brother! Choose again.
		@JAMES =0
		&overlay JAMES opacity 1 in 0.5
		goto week1_choice
	}
	if (KATE = 2){
		NARR
		That’s her brother! Choose again.
		@KATE =0
		&overlay KATE opacity 1 in 0.5
		goto week1_choice
	}
	if (JANE = 2){
		@WEEK1 +1
	}
	@WILLIAM =1
	&overlay WILLIAM opacity 0 in 0.5
	goto week1_choice
}
"HENRY" if (HENRY < 1){
	if (BETSY = 2){
		@WEEK1 +1
	}
	@HENRY =1
	&overlay HENRY opacity 0 in 0.5
	goto week1_choice
}
"ROBERT" if (ROBERT < 1){
	if (CHARLOTTE = 2){
		NARR
		That’s her brother! Choose again.
		@CHARLOTTE =0
		&overlay CHARLOTTE opacity 1 in 0.5
		goto week1_choice
	}
	if (NAN = 2){
		NARR
		That’s her brother! Choose again.
		@NAN =0
		&overlay NAN opacity 1 in 0.5
		goto week1_choice
	}
	if (JOHN = 2){
		@WEEK1 +1
	}
	@ROBERT =1
	&overlay ROBERT opacity 0 in 0.5
	goto week1_choice
}

label end_week1_choice
#rest of story here.