SIMPLE ARROWS DRESSING GAM) by Dara Amarie! Character not showing up!

I have the overlays downloaded and everything set up, but when my character enters her closet before the code starts, she doesnt appear. Like- everything else from Dara does, but not her. Can anyone tell me what i’m doing wrong?

Heres Dara Amarie’s code:

here is mine + a screenshot:
INT. COLLEGE BATHROOM - DAY
@LILITH enters from left

SIDE ARROWS DRESSING GAME - 3 OUTFITS {

@add ARROW_TAP_RIGHT
&ui ARROW_TAP_RIGHT create and ui ARROW_TAP_RIGHT opacity 1 in 0 and ui ARROW_TAP_RIGHT scales to 0.325 0.325 in 0 and ui ARROW_TAP_RIGHT shifts to 215 340 in zone 1 in 0 and ui ARROW_TAP_RIGHT to layer 5
&ui ARROW_TAP_LEFT create and ui ARROW_TAP_LEFT opacity 1 in 0 and ui ARROW_TAP_LEFT scales to 0.325 0.325 in 0 and ui ARROW_TAP_LEFT shifts to 215 265 in zone 1 in 0 and ui ARROW_TAP_LEFT to layer 5
&ui HEART_CHECK_TAP create and ui HEART_CHECK_TAP opacity 0 in 0 and ui HEART_CHECK_TAP scales to 0.325 0.325 in 0 and ui HEART_CHECK_TAP shifts to 215 170 in zone 1 in 0 and ui HEART_CHECK_TAP to layer 5
@LILITH enters from left

tappable
“ARROW_TAP_LEFT” {
&ui HEART_CHECK_TAP opacity 1 in 0.3
goto arrow_outfit_tap_3_x
} “ARROW_TAP_RIGHT” {
&ui HEART_CHECK_TAP opacity 1 in 0.3
goto arrow_outfit_tap_1_x
}

label arrow_outfit_tap_1_x
@LILITH =1
################## CHANGE OUTFIT NAME BELOW TO YOUR 1ST OUTFIT ###############
@LILITH changes into suit femm

tappable
“ARROW_TAP_LEFT” {
goto arrow_outfit_tap_3_x
} “ARROW_TAP_RIGHT” {
goto arrow_outfit_tap_2_x
} “HEART_CHECK_TAP” {
goto arrow_outfit_check_x
}

label arrow_outfit_tap_2_x
@LILITH =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@LILITH changes into light green dress

tappable
“ARROW_TAP_LEFT” {
goto arrow_outfit_tap_1_x
} “ARROW_TAP_RIGHT” {
goto arrow_outfit_tap_3_x
} “HEART_CHECK_TAP” {
goto arrow_outfit_check_x
}

label arrow_outfit_tap_3_x
@LILITH =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@LILITH changes into fancy dress sheer
tappable
“ARROW_TAP_LEFT” {
goto arrow_outfit_tap_2_x
} “ARROW_TAP_RIGHT” {
goto arrow_outfit_tap_1_x
} “HEART_CHECK_TAP” {
goto arrow_outfit_check_x
}

label arrow_outfit_check_x
&ui ARROW_TAP_LEFT opacity 0 in 0.1 and ui ARROW_TAP_RIGHT opacity 0 in 0.1 and ui HEART_CHECK_TAP opacity 0 in 0.1

    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
@LILITH is kiss_blow_happy_atcamera
} “No, let me try a different outfit.” {
&LILITH starts idle
&ui ARROW_TAP_LEFT opacity 1 in 0.3 and ui ARROW_TAP_RIGHT opacity 1 in 0.3 and ui HEART_CHECK_TAP opacity 1 in 0.3
if (LILITH =1) {
goto arrow_outfit_tap_1_x
} elif (LILITH =2) {
goto arrow_outfit_tap_2_x
} else {
goto arrow_outfit_tap_3_x
}
}

SIDE ARROWS DRESSING GAME - 3 OUTFITS }

Thanks!

Im not sure but try fixing this to @CHAR enters from direction to position instead

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