By Dara

 

A simple tappable dressing game that uses tappable arrow overlays. Let your readers preview each outfit before choosing which outfit to wear. There are three templates: a template for only 3 outfits, 5 outfits, and 10 outfits.

DIRECTIONS

This dressing game uses the points system to remember which outfit was chosen. If you already use points for your character, then you will need to change the "point character" to a different character so their points won't get messed up.

You must copy and paste the template into your script first!
Then you need to change the template’s character names to your characters' names.
Follow these instructions in order :

Highlight “CHARACTER” in your script

Press Ctrl + F on your keyboard (Cmd + F for Macs)

A small grey box will pop up, click on ALL first!

Type in your character’s name in all caps

As you go through the template, you will see a bunch of hashtags like this: #################

These are used to mark where the outfit name needs to go. Please change the outfit names to your own outfit names.​

Be sure to download the needed overlays for this dressing game and name them exactly how I named them. CLICK BUTTON BELOW!

- Choose either the black or white arrow overlays.

- Choose the bubble overlay that matches your speech bubble style: slate, blue, purple, or pink

This template also works in INK. You just need to change the Limelight animations to INK animations.

Three Outfits Template Code:

# 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 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_3
} "RIGHT_ARROW" {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}

label tap_outfit_1
@CHARACTER =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@CHARACTER changes into OUTFIT_1

tappable
"LEFT_ARROW" {
goto tap_outfit_3
} "RIGHT_ARROW" {
goto tap_outfit_2
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_2
@CHARACTER =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@CHARACTER changes into OUTFIT_2

tappable
"LEFT_ARROW" {
goto tap_outfit_1
} "RIGHT_ARROW" {
goto tap_outfit_3
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_3
@CHARACTER =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@CHARACTER changes into OUTFIT_3

tappable
"LEFT_ARROW" {
goto tap_outfit_2
} "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
@CHARACTER is primp_neutral
        NARRATOR
    Are you sure you want to wear this outfit?
choice
<PREMIUM> "Yes!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@CHARACTER is kiss_blow_happy_atcamera
} "No, let me try the others" {
&CHARACTER starts idle
&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 (CHARACTER =1) {
goto tap_outfit_1
} elif (CHARACTER =2) {
goto tap_outfit_2
} else {
goto tap_outfit_3
}
}

# ARROWS DRESSING GAME - 3 OUTFITS }

Five Outfits Template Code:

# 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
@CHARACTER =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@CHARACTER changes into OUTFIT_1

tappable
"LEFT_ARROW" {
goto tap_outfit_5
} "RIGHT_ARROW" {
goto tap_outfit_2
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_2
@CHARACTER =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@CHARACTER changes into OUTFIT_2

tappable
"LEFT_ARROW" {
goto tap_outfit_1
} "RIGHT_ARROW" {
goto tap_outfit_3
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_3
@CHARACTER =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@CHARACTER changes into OUTFIT_3

tappable
"LEFT_ARROW" {
goto tap_outfit_2
} "RIGHT_ARROW" {
goto tap_outfit_4
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_4
@CHARACTER =4
################## CHANGE OUTFIT NAME TO YOUR 4TH OUTFIT ###############
@CHARACTER changes into OUTFIT_4

tappable
"LEFT_ARROW" {
goto tap_outfit_3
} "RIGHT_ARROW" {
goto tap_outfit_5
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_5
@CHARACTER =5
################## CHANGE OUTFIT NAME TO YOUR 5TH OUTFIT ###############
@CHARACTER changes into OUTFIT_5

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
@CHARACTER is primp_neutral
        NARRATOR
    Are you sure you want to wear this outfit?
choice
<PREMIUM> "Yes!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@CHARACTER is kiss_blow_happy_atcamera
} "No, let me try the others" {
&CHARACTER 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 (CHARACTER =1) {
goto tap_outfit_1
} elif (CHARACTER =2) {
goto tap_outfit_2
} elif (CHARACTER =3) {
goto tap_outfit_3
} elif (CHARACTER =4) {
goto tap_outfit_4
} else {
goto tap_outfit_5
}
}

# ARROWS DRESSING GAME - 5 OUTFITS }

Ten Outfits Template Code:

# ARROWS DRESSING GAME - 10 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_10
} "RIGHT_ARROW" {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}

label tap_outfit_1
@CHARACTER =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@CHARACTER changes into OUTFIT_1

tappable
"LEFT_ARROW" {
goto tap_outfit_10
} "RIGHT_ARROW" {
goto tap_outfit_2
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_2
@CHARACTER =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@CHARACTER changes into OUTFIT_2

tappable
"LEFT_ARROW" {
goto tap_outfit_1
} "RIGHT_ARROW" {
goto tap_outfit_3
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_3
@CHARACTER =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@CHARACTER changes into OUTFIT_3

tappable
"LEFT_ARROW" {
goto tap_outfit_2
} "RIGHT_ARROW" {
goto tap_outfit_4
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_4
@CHARACTER =4
################## CHANGE OUTFIT NAME TO YOUR 4TH OUTFIT ###############
@CHARACTER changes into OUTFIT_4

tappable
"LEFT_ARROW" {
goto tap_outfit_3
} "RIGHT_ARROW" {
goto tap_outfit_5
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_5
@CHARACTER =5
################## CHANGE OUTFIT NAME TO YOUR 5TH OUTFIT ###############
@CHARACTER changes into OUTFIT_5

tappable
"LEFT_ARROW" {
goto tap_outfit_4
} "RIGHT_ARROW" {
goto tap_outfit_6
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_6
@CHARACTER =6
################## CHANGE OUTFIT NAME TO YOUR 6TH OUTFIT ###############
@CHARACTER changes into OUTFIT_6

tappable
"LEFT_ARROW" {
goto tap_outfit_5
} "RIGHT_ARROW" {
goto tap_outfit_7
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_7
@CHARACTER =7
################## CHANGE OUTFIT NAME TO YOUR 7TH OUTFIT ###############
@CHARACTER changes into OUTFIT_7

tappable
"LEFT_ARROW" {
goto tap_outfit_6
} "RIGHT_ARROW" {
goto tap_outfit_8
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_8
@CHARACTER =8
################## CHANGE OUTFIT NAME TO YOUR 8TH OUTFIT ###############
@CHARACTER changes into OUTFIT_8

tappable
"LEFT_ARROW" {
goto tap_outfit_7
} "RIGHT_ARROW" {
goto tap_outfit_9
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_9
@CHARACTER =9
################## CHANGE OUTFIT NAME TO YOUR 9TH OUTFIT ###############
@CHARACTER changes into OUTFIT_9

tappable
"LEFT_ARROW" {
goto tap_outfit_8
} "RIGHT_ARROW" {
goto tap_outfit_10
} "CHOOSE" {
goto tap_outfit_choose
}

label tap_outfit_10
@CHARACTER =10
################## CHANGE OUTFIT NAME TO YOUR 10TH OUTFIT ###############
@CHARACTER changes into OUTFIT_10

tappable
"LEFT_ARROW" {
goto tap_outfit_9
} "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
@CHARACTER is primp_neutral
        NARRATOR
    Are you sure you want to wear this outfit?
choice
<PREMIUM> "Yes!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@CHARACTER is kiss_blow_happy_atcamera
} "No, let me try the others" {
&CHARACTER starts idle
&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 (CHARACTER =1) {
goto tap_outfit_1
} elif (CHARACTER =2) {
goto tap_outfit_2
} elif (CHARACTER =3) {
goto tap_outfit_3
} elif (CHARACTER =4) {
goto tap_outfit_4
} elif (CHARACTER =5) {
goto tap_outfit_5
} elif (CHARACTER =6) {
goto tap_outfit_6
} elif (CHARACTER =7) {
goto tap_outfit_7
} elif (CHARACTER =8) {
goto tap_outfit_8
} elif (CHARACTER =9) {
goto tap_outfit_9
} else {
goto tap_outfit_10
}
}

# ARROWS DRESSING GAME - 10 OUTFITS }