I have an outfit game problem

Hi everybody! I have a problem. I’m coding on the computer and, for some reason, it doesn’t make me tap on the choice arrows. Here’s the script template:

ARROWS DRESSING GAME - 3 OUTFITS {

&ui LEFT ARROW create and ui LEFT ARROW scales to 0.8 0.8 in 0 and ui LEFT ARROW shifts to 7 187 in 0 and ui LEFT ARROW opacity 1 in 0
&ui RIGHT ARROW create and ui RIGHT ARROW scales to 0.8 0.8 in 0 and ui RIGHT ARROW shifts to 250 187 in 0 and ui RIGHT ARROW opacity 1 in 0
&ui CHOOSE THIS create and ui CHOOSE THIS scales to 0.4 0.4 in 0 and ui CHOOSE THIS shifts to 75 110 in 0 and ui CHOOSE THIS opacity 0 in 0

tappable
“LEFT_ARROW” {
&ui CHOOSE THIS opacity 0.8 in 0.1
goto tap_outfit_31
} “RIGHT_ARROW” {
&ui CHOOSE THIS opacity 0.8 in 0.1
goto tap_outfit_11
}

label tap_outfit_11
@NATHAN =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@NATHAN changes into outfit12_NATHAN

tappable
“LEFT_ARROW” {
goto tap_outfit_31
} “RIGHT_ARROW” {
goto tap_outfit_21
} “CHOOSE” {
goto tap_outfit_choose1
}

label tap_outfit_21
@NATHAN =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@NATHAN changes into outfit13_NATHAN

tappable
“LEFT_ARROW” {
goto tap_outfit_11
} “RIGHT_ARROW” {
goto tap_outfit_31
} “CHOOSE” {
goto tap_outfit_choose1
}

label tap_outfit_31
@NATHAN =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@NATHAN changes into outfit14_NATHAN

tappable
“LEFT_ARROW” {
goto tap_outfit_21
} “RIGHT_ARROW” {
goto tap_outfit_11
} “CHOOSE” {
goto tap_outfit_choose1
}

label tap_outfit_choose1
&ui LEFT ARROW opacity 0 in 0.1 and ui RIGHT ARROW opacity 0 in 0.1 and ui CHOOSE THIS opacity 0 in 0.1
@NATHAN is primp_neutral
NARRATOR
Are you sure you want to wear this outfit?
choice
“Yes!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@NATHAN is kiss_blow_happy_atcamera
} “No, let me try the others” {
&NATHAN starts idle
&ui LEFT ARROW opacity 1 in 0.1 and ui RIGHT ARROW opacity 1 in 0.1 and ui CHOOSE THIS opacity 0.8 in 0.1
if (NATHAN =1) {
goto tap_outfit_11
} elif (NATHAN =2) {
goto tap_outfit_21
} else {
goto tap_outfit_31
}
}

ARROWS DRESSING GAME - 3 OUTFITS }

Can someone please help me? I don’t know how to resolve it.

have you named your overlays according to the ones in the script?

ARROWS DRESSING GAME - 5 OUTFITS {

&ui LEFT_ARROW create and ui LEFT_ARROW scales to 0.8 0.8 in 0 and ui LEFT_ARROW shifts to 7 187 in 0 and ui LEFT_ARROW opacity 1 in 0
&ui RIGHT_ARROW create and ui RIGHT_ARROW scales to 0.8 0.8 in 0 and ui RIGHT_ARROW shifts to 250 187 in 0 and ui RIGHT_ARROW opacity 1 in 0
&ui CHOOSE create and ui CHOOSE scales to 0.4 0.4 in 0 and ui CHOOSE shifts to 75 110 in 0 and ui CHOOSE opacity 0 in 0

tappable
“LEFT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_5
} “RIGHT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}

label tap_outfit_1
@RILEY =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@RILEY changes into OUTFIT1

tappable
“LEFT_ARROW” {
goto tap_outfit_5
} “RIGHT_ARROW” {
goto tap_outfit_2
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_2
@RILEY =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@RILEY changes into OUTFIT2

tappable
“LEFT_ARROW” {
goto tap_outfit_1
} “RIGHT_ARROW” {
goto tap_outfit_3
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_3
@RILEY =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@RILEY changes into OUTFIT3

tappable
“LEFT_ARROW” {
goto tap_outfit_2
} “RIGHT_ARROW” {
goto tap_outfit_4
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_4
@RILEY =4
################## CHANGE OUTFIT NAME TO YOUR 4TH OUTFIT ###############
@RILEY changes into OUTFIT4

tappable
“LEFT_ARROW” {
goto tap_outfit_3
} “RIGHT_ARROW” {
goto tap_outfit_5
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_5
@RILEY =5
################## CHANGE OUTFIT NAME TO YOUR 5TH OUTFIT ###############
@RILEY changes into OUTFIT5

tappable
“LEFT_ARROW” {
goto tap_outfit_4
} “RIGHT_ARROW” {
goto tap_outfit_1
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_choose
&ui LEFT_ARROW opacity 0 in 0.1 and ui RIGHT_ARROW opacity 0 in 0.1 and ui CHOOSE opacity 0 in 0.1
@RILEY is primp_neutral
NARRATOR
Are you sure you want to wear this outfit?
choice
“Yes!” {

@RILEY is kiss_blow_happy_atcamera
} “No, let me try the others” {
&RILEY starts idle and ui LEFT_ARROW opacity 1 in 0.1 and ui RIGHT_ARROW opacity 1 in 0.1 and ui CHOOSE opacity 0.8 in 0.1
if (RILEY =1) {
goto tap_outfit_1
} elif (RILEY =2) {
goto tap_outfit_2
} elif (RILEY =3) {
goto tap_outfit_3
} elif (RILEY =4) {
goto tap_outfit_4
} else {
goto tap_outfit_5
}
}
maybe try this instead?
change @/RILEY to @/NATHAN
and OUTFIT1…2…3 to your outfits

1 Like

It worked! Thank you so much!! :blob_hearts:

1 Like

no worries !!
glad it helped c:

1 Like

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