Duki's Custom Button Request Thread & Game Menu Template [Closed]

:no_entry_sign: This thread is closed. PM me if you need help or have a custom button request! I’ll do these requests on a case-by-case basis.


I make custom buttons for game menus and/or tappables!

Custom designs I made:

One

Two

Three

Button Request Form—

Fill out this form below to submit your custom button request!

Please use Google Fonts for your font choice. Let me know the name of the font.

Font:
Color:
Button style (rounded or squared):
Label for button (the text on the button):

NOTE: If you want multiple button colors, like a different color for each button, you can just list the color and button label together like this: Start (orange), Skip (pink), Check Points (Gold)

~ENJOY~

:smiling_face_with_three_hearts:

If you’re having trouble with the code template, don’t be afraid to send me your code in a private message and I’ll get back to you as soon as I can! :smile:

:star2: Hey guys, I made a template for in-game menu selection! :dizzy:


This is what the final design looks like:


You don’t have to add every button in the menu if you don’t want to!
Make sure you upload the buttons as overlays in the Episode portal and the background as a background:

Resources:
*Background:*

Upload this as: INT. MENU-BACKGROUND

*Buttons:*

Buttons!

Start Story

Upload this as: MENU-START
start

Customize

Upload this as: MENU-CUSTOMIZE
customize

Points

Upload this as: MENU-POINTS
points

Skip

Upload this as: MENU-SKIP
skip



Code template!

Note: You will see comments inside the script — follow the comments and everything should work as intended. You will need to use your own CC script. If you don’t have one you can use Dara’s CC template via her website!

Please make sure to remove any unused buttons (points, cc, skip) from the script.

Copy & paste the following code into your writing portal:

Code Template:
@transition fade in white in 1.5
label game_menu
INT. MENU-BACKGROUND
@speechbubble reset

#   START BUTTON 
@ui MENU-START CREATE
@ui MENU-START opacity 1 in 0
@ui MENU-START shifts to 40 375 in zone 1
@ui MENU-START scales to 1 1 

#   CUSTOMIZE BUTTON 
@ui MENU-CUSTOMIZE CREATE
@ui MENU-CUSTOMIZE opacity 1 in 0
@ui MENU-CUSTOMIZE scales to 1 1 
@ui MENU-CUSTOMIZE shifts to 40 295 in zone 1

#   POINTS BUTTON 
@ui MENU-POINTS CREATE
@ui MENU-POINTS opacity 1 in 0
@ui MENU-POINTS scales to 1 1 
@ui MENU-POINTS shifts to 40 215 in zone 1

#   SKIP BUTTON 
@ui MENU-SKIP CREATE
@ui MENU-SKIP opacity 1 in 0
@ui MENU-SKIP scales to 1 1 
@ui MENU-SKIP shifts to 40 135 in zone 1


tappable 
"MENU-START" {
#========== PLACE YOUR STORY AFTER THIS LINE =============


} "MENU-CUSTOMIZE" {
@transition fade out black in 1.5
#========== PLACE  CC SCRIPT AFTER THIS LINE =============
# For DARA'S CUSTOMIZATION SCRIPT: 
# Go here: https://www.dara-amarie.com/
# Find your CC script (INK OR LL) & paste here

#========== END OF CC SCRIPT =============
goto game_menu

} "MENU-POINTS" {
#========== PLACE YOUR POINTS SCRIPT AFTER THIS LINE ===========

#========= END OF POINTS SCRIPT =============
goto game_menu

} "MENU-SKIP" {

        NARR
    Do you want to |bold|skip this episode?
    
choice 
<PREMIUM>"Yes, let me skip!" {
goto end 
} "No, take me back to the menu" {
goto game_menu   
}
}


    
label end
#========== PLACE YOUR END SCRIPT HERE =============
        NARRATOR
    Thanks for reading! 
    
        NARRATOR
    Follow me on instagram! |bold|@<YOUR-INSTA-HANDLE>

Warning— a lot of code below:

An full-on example of this script template:
@transition fade in white in 1.5
label game_menu
INT. MENU-BACKGROUND
@speechbubble reset


#   START BUTTON 
@ui MENU-START CREATE
@ui MENU-START opacity 1 in 0
@ui MENU-START shifts to 40 375 in zone 1
@ui MENU-START scales to 1 1 

#   CUSTOMIZE BUTTON 
@ui MENU-CUSTOMIZE CREATE
@ui MENU-CUSTOMIZE opacity 1 in 0
@ui MENU-CUSTOMIZE scales to 1 1 
@ui MENU-CUSTOMIZE shifts to 40 295 in zone 1

#   POINTS BUTTON 
@ui MENU-POINTS CREATE
@ui MENU-POINTS opacity 1 in 0
@ui MENU-POINTS scales to 1 1 
@ui MENU-POINTS shifts to 40 215 in zone 1

#   SKIP BUTTON 
@ui MENU-SKIP CREATE
@ui MENU-SKIP opacity 1 in 0
@ui MENU-SKIP scales to 1 1 
@ui MENU-SKIP shifts to 40 135 in zone 1


tappable 
"MENU-START" {
#========== PLACE YOUR STORY AFTER THIS LINE =============

INT. BLACK - NIGHT

        NARRATOR
    It was a dark and stormy night....



} "MENU-CUSTOMIZE" {
#========== PLACE DARA'S CC SCRIPT AFTER THIS LINE =============
# DARA'S CUSOMIZATION SCRIPT: 
# Go here: https://www.dara-amarie.com/
# Find your CC script (INK OR LL) & paste here

@transition fade out black in 1.5
#   SCRIPT {
INT. BLACK - DAY

label female_custom_1

@MC stands screen center and MC faces right and MC starts idle

        NARRATOR
    What do you look like?

choice
"Skin Tone" {
goto fem_skin_1
} "Hair" {
goto fem_hair_1
} "Eyes" {
goto fem_eyes_1
} "Eyebrows" {
goto fem_brows_1
} "Face" {
goto fem_face_1
} "Nose" {
goto fem_nose_1
} "Lips" {
goto fem_mouth_1
} <PREMIUM> "This is perfect!" {
goto female_1_end
}

####################### SKIN COLOR #######################

label fem_skin_1

        NARRATOR
    All skin tones.

choice
"Neutral Shades" {
goto fem_neutralskin_1
} "Rose Shades" {
goto fem_roseskin_1
} "Gold Shades" {
goto fem_goldskin_1
} "Copper Shades" {
goto fem_copperskin_1
} "Ash Shades" {
goto fem_ashskin_1
} <GREEN> "Done" {
goto female_custom_1
}

label fem_neutralskin_1

        NARRATOR
    Neutral skin tones.

choice [shouldPaginate: YES]
"Neutral 00" {
@MC changes bodyColor into Neutral 00
goto fem_neutralskin_1
} "Neutral 01" {
@MC changes bodyColor into Neutral 01
goto fem_neutralskin_1
} "Neutral 02" {
@MC changes bodyColor into Neutral 02
goto fem_neutralskin_1
} "Neutral 03" {
@MC changes bodyColor into Neutral 03
goto fem_neutralskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Neutral 04" {
@MC changes bodyColor into Neutral 04
goto fem_neutralskin_1
} "Neutral 05" {
@MC changes bodyColor into Neutral 05
goto fem_neutralskin_1
} "Neutral 06" {
@MC changes bodyColor into Neutral 06
goto fem_neutralskin_1
} "Neutral 07" {
@MC changes bodyColor into Neutral 07
goto fem_neutralskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Neutral 08" {
@MC changes bodyColor into Neutral 08
goto fem_neutralskin_1
} "Neutral 09" {
@MC changes bodyColor into Neutral 09
goto fem_neutralskin_1
} "Neutral 10" {
@MC changes bodyColor into Neutral 10
goto fem_neutralskin_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Different Shades" {
goto fem_skin_1
}

label fem_roseskin_1

        NARRATOR
    Rose skin tones.

choice [shouldPaginate: YES]
"Rose 00" {
@MC changes bodyColor into Rose 00
goto fem_roseskin_1
} "Rose 01" {
@MC changes bodyColor into Rose 01
goto fem_roseskin_1
} "Rose 02" {
@MC changes bodyColor into Rose 02
goto fem_roseskin_1
} "Rose 03" {
@MC changes bodyColor into Rose 03
goto fem_roseskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Rose 04" {
@MC changes bodyColor into Rose 04
goto fem_roseskin_1
} "Rose 05" {
@MC changes bodyColor into Rose 05
goto fem_roseskin_1
} "Rose 06" {
@MC changes bodyColor into Rose 06
goto fem_roseskin_1
} "Rose 07" {
@MC changes bodyColor into Rose 07
goto fem_roseskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Rose 08" {
@MC changes bodyColor into Rose 08
goto fem_roseskin_1
} "Rose 09" {
@MC changes bodyColor into Rose 09
goto fem_roseskin_1
} "Rose 10" {
@MC changes bodyColor into Rose 10
goto fem_roseskin_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Different Shades" {
goto fem_skin_1
}

label fem_goldskin_1

        NARRATOR
    Gold skin tones.

choice [shouldPaginate: YES]
"Gold 00" {
@MC changes bodyColor into Gold 00
goto fem_goldskin_1
} "Gold 01" {
@MC changes bodyColor into Gold 01
goto fem_goldskin_1
} "Gold 02" {
@MC changes bodyColor into Gold 02
goto fem_goldskin_1
} "Gold 03" {
@MC changes bodyColor into Gold 03
goto fem_goldskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Gold 04" {
@MC changes bodyColor into Gold 04
goto fem_goldskin_1
} "Gold 05" {
@MC changes bodyColor into Gold 05
goto fem_goldskin_1
} "Gold 06" {
@MC changes bodyColor into Gold 06
goto fem_goldskin_1
} "Gold 07" {
@MC changes bodyColor into Gold 07
goto fem_goldskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Gold 08" {
@MC changes bodyColor into Gold 08
goto fem_goldskin_1
} "Gold 09" {
@MC changes bodyColor into Gold 09
goto fem_goldskin_1
} "Gold 10" {
@MC changes bodyColor into Gold 10
goto fem_goldskin_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Different Shades" {
goto fem_skin_1
}

label fem_copperskin_1

        NARRATOR
    Copper skin tones.

choice [shouldPaginate: YES]
"Copper 00" {
@MC changes bodyColor into Copper 00
goto fem_copperskin_1
} "Copper 01" {
@MC changes bodyColor into Copper 01
goto fem_copperskin_1
} "Copper 02" {
@MC changes bodyColor into Copper 02
goto fem_copperskin_1
} "Copper 03" {
@MC changes bodyColor into Copper 03
goto fem_copperskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Copper 04" {
@MC changes bodyColor into Copper 04
goto fem_copperskin_1
} "Copper 05" {
@MC changes bodyColor into Copper 05
goto fem_copperskin_1
} "Copper 06" {
@MC changes bodyColor into Copper 06
goto fem_copperskin_1
} "Copper 07" {
@MC changes bodyColor into Copper 07
goto fem_copperskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Copper 08" {
@MC changes bodyColor into Copper 08
goto fem_copperskin_1
} "Copper 09" {
@MC changes bodyColor into Copper 09
goto fem_copperskin_1
} "Copper 10" {
@MC changes bodyColor into Copper 10
goto fem_copperskin_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Different Shades" {
goto fem_skin_1
}

label fem_ashskin_1

        NARRATOR
    Ash skin tones.

choice [shouldPaginate: YES]
"Ash 00" {
@MC changes bodyColor into Ash 00
goto fem_ashskin_1
} "Ash 01" {
@MC changes bodyColor into Ash 01
goto fem_ashskin_1
} "Ash 02" {
@MC changes bodyColor into Ash 02
goto fem_ashskin_1
} "Ash 03" {
@MC changes bodyColor into Ash 03
goto fem_ashskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Ash 04" {
@MC changes bodyColor into Ash 04
goto fem_ashskin_1
} "Ash 05" {
@MC changes bodyColor into Ash 05
goto fem_ashskin_1
} "Ash 06" {
@MC changes bodyColor into Ash 06
goto fem_ashskin_1
} "Ash 07" {
@MC changes bodyColor into Ash 07
goto fem_ashskin_1
} <GREEN> "Different Shades" {
goto fem_skin_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Ash 08" {
@MC changes bodyColor into Ash 08
goto fem_ashskin_1
} "Ash 09" {
@MC changes bodyColor into Ash 09
goto fem_ashskin_1
} "Ash 10" {
@MC changes bodyColor into Ash 10
goto fem_ashskin_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Different Shades" {
goto fem_skin_1
}

####################### EYEBROWS #######################

label fem_brows_1

        NARRATOR
    Eyebrow shapes.

choice [shouldPaginate: YES]
"Arched Natural"{
@MC changes eyebrows into Arched Natural
goto fem_brows_1
}"Arched Thick"{
@MC changes eyebrows into Arched Thick Styled
goto fem_brows_1
}"Arched Thin"{
@MC changes eyebrows into Arched Thin
goto fem_brows_1
}"Arched Thin High"{
@MC changes eyebrows into Arched Thin High
goto fem_brows_1
}<GREEN> "Change Color" {
goto fem_browscolor_1
}<PREMIUM> "Done"{
goto female_custom_1
}
"Round Medium"{
@MC changes eyebrows into Round Medium
goto fem_brows_1
}"Round Thick"{
@MC changes eyebrows into Round Thick
goto fem_brows_1
}"Round Thin High"{
@MC changes eyebrows into Round Thin High
goto fem_brows_1
}"Straight Medium"{
@MC changes eyebrows into Straight Medium
goto fem_brows_1
}<GREEN> "Change Color" {
goto fem_browscolor_1
}<PREMIUM> "Done"{
goto female_custom_1
}
"Arched Natural Scar"{
@MC changes eyebrows into Arched Natural Scar
goto fem_brows_1
}"High Arch Angled"{
@MC changes eyebrows into High Arch Angled
goto fem_brows_1
}"Arched Short"{
@MC changes eyebrows into Arched Short
goto fem_brows_1
}"Bushy Thick"{
@MC changes eyebrows into Bushy Thick
goto fem_brows_1
}<GREEN> "Change Color" {
goto fem_browscolor_1
}<PREMIUM> "Done"{
goto female_custom_1
}

####################### EYEBROW COLOR #######################

label fem_browscolor_1

        NARRATOR
    Eyebrow colors.

choice [shouldPaginate: YES]
"Dirty Blonde" {
@MC changes eyebrowsColor into Dirty Blonde
goto fem_browscolor_1
} "Honey Blonde" {
@MC changes eyebrowsColor into Honey Blonde
goto fem_browscolor_1
} "Platinum Blonde" {
@MC changes eyebrowsColor into Platinum Blonde
goto fem_browscolor_1
} "Strawberry Blonde" {
@MC changes eyebrowsColor into Strawberry Blonde
goto fem_browscolor_1
} <GREEN> "Brow Shapes" {
goto fem_brows_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Blonde Medium" {
@MC changes eyebrowsColor into Blonde Medium
goto fem_browscolor_1
} "Chestnut Brown" {
@MC changes eyebrowsColor into Chestnut Brown
goto fem_browscolor_1
} "Dark Brown" {
@MC changes eyebrowsColor into Dark Brown
goto fem_browscolor_1
} "Deep Brown" {
@MC changes eyebrowsColor into Deep Brown
goto fem_browscolor_1
} <GREEN> "Brow Shapes" {
goto fem_brows_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Light Brown" {
@MC changes eyebrowsColor into Light Brown
goto fem_browscolor_1
} "Dark Black" {
@MC changes eyebrowsColor into Black Dark
goto fem_browscolor_1
} "Jet Black" {
@MC changes eyebrowsColor into blackJet
goto fem_browscolor_1
} "Light Pink" {
@MC changes eyebrowsColor into Pink Lt
goto fem_browscolor_1
} <GREEN> "Brow Shapes" {
goto fem_brows_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Lavender" {
@MC changes eyebrowsColor into Purple Lilac
goto fem_browscolor_1
} "Mint" {
@MC changes eyebrowsColor into Green Mint
goto fem_browscolor_1
} "Ginger Red" {
@MC changes eyebrowsColor into Ginger Red
goto fem_browscolor_1
} "Copper Red" {
@MC changes eyebrowsColor into Copper Red
goto fem_browscolor_1
} <GREEN> "Brow Shapes" {
goto fem_brows_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Gray" {
@MC changes eyebrowsColor into Gray
goto fem_browscolor_1
} "White" {
@MC changes eyebrowsColor into White
goto fem_browscolor_1
} <GREEN> "Brow Shapes" {
goto fem_brows_1
} <PREMIUM> "Done" {
goto female_custom_1
}

####################### FACE SHAPE #######################

label fem_face_1

        NARRATOR
    Face shapes.

choice [shouldPaginate: YES]
"Diamond" {
@MC changes face into Diamond
goto fem_face_1
} "Long Diamond" {
@MC changes face into Diamond Long
goto fem_face_1
} "Defined Diamond" {
@MC changes face into Diamond Defined Contour
goto fem_face_1
} "Defined Heart" {
@MC changes face into Heart Defined
goto fem_face_1
} "Defined Squared" {
@MC changes face into Square Defined
goto fem_face_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Soft Heart" {
@MC changes face into Heart Soft
goto fem_face_1
} "Defined Triangle" {
@MC changes face into Triangle Defined
goto fem_face_1
} "Mature Square" {
@MC changes face into Square Mature
goto fem_face_1
} "Mature Heart" {
@MC changes face into Heart Mature
goto fem_face_1
} "Soft Round" {
@MC changes face into Round Soft
goto fem_face_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Square Soft" {
@MC changes face into Square Soft
goto fem_face_1
} "Round Puffy" {
@MC changes face into Round Puffy Cheek
goto fem_face_1
} "Heart Double Chin" {
@MC changes face into Heart Mature Double Chin
goto fem_face_1
} "Round Double Chin" {
@MC changes face into Round Double Chin
goto fem_face_1
} "Long Double Chin" {
@MC changes face into Long Double Chin
goto fem_face_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Square Youth" {
@MC changes face into Square Youthful
goto fem_face_1
} "Square Aged" {
@MC changes face into Square Aged
goto fem_face_1
} "Square Chiseled" {
@MC changes face into Square Chiseled
goto fem_face_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Triangle Chiseled" {
@MC changes face into Triangle Chiseled
goto fem_face_1
}

####################### EYE SHAPE #######################

label fem_eyes_1

        NARRATOR
    Eye shapes.

choice [shouldPaginate: YES]
"Round Wide" {
@MC changes eyes into Round Downturned Wide
goto fem_eyes_1
} "Round Medium" {
@MC changes eyes into Round Medium
goto fem_eyes_1
} "Sharp Almond" {
@MC changes eyes into Sharp Almond
goto fem_eyes_1
} "Generic" {
@MC changes eyes into Female Generic
goto fem_eyes_1
} <GREEN>"Change Color"{
goto fem_eyecolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Deepset Downturned" {
@MC changes eyes into Deepset Downturned
goto fem_eyes_1
} "Deepset Wide" {
@MC changes eyes into Deepset Upturned Wide
goto fem_eyes_1
} "Deepset Almond" {
@MC changes eyes into Deepset Almond
goto fem_eyes_1
} "Monolid Defined" {
@MC changes eyes into Monolid Defined
goto fem_eyes_1
} <GREEN>"Change Color"{
goto fem_eyecolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Monolid Slender" {
@MC changes eyes into Monolid Slender
goto fem_eyes_1
} "Angular Slender" {
@MC changes eyes into Angular Slender
goto fem_eyes_1
} "Almond Slender" {
@MC changes eyes into Hooded Slender Almond
goto fem_eyes_1
} "Almond Slender Eyeliner" {
@MC changes eyes into Hooded Slender Almond Eyeliner
goto fem_eyes_1
} <GREEN>"Change Color"{
goto fem_eyecolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Deepset Mature" {
@MC changes eyes into Deepset Mature
goto fem_eyes_1
} "Deepset Smokey Eye" {
@MC changes eyes into Deep Set False Lashes Smokey Eye
goto fem_eyes_1
}"Heavy Lid Upturned" {
@MC changes eyes into Heavy Lid Upturned
goto fem_eyes_1
} "Delicate Almond" {
@MC changes eyes into Delicate Almond
goto fem_eyes_1
} <GREEN>"Change Color"{
goto fem_eyecolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Deepset Downturned Wide" {
@MC changes eyes into Deepset Downturned Wide
goto fem_eyes_1
} <PREMIUM>"Done"{
goto female_custom_1
} <GREEN>"Change Color"{
goto fem_eyecolor_1
}

####################### EYE COLOR #######################

label fem_eyecolor_1

        NARRATOR
    Eye colors.

choice [shouldPaginate: YES]
"Black" {
@MC changes eyesColor into Brown Black
goto fem_eyecolor_1
} "Dark Brown" {
@MC changes eyesColor into Brown Dark
goto fem_eyecolor_1
} "Light Brown" {
@MC changes eyesColor into Brown Light
goto fem_eyecolor_1
} "Pale Brown" {
@MC changes eyesColor into Brown Pale
goto fem_eyecolor_1
} <GREEN> "Eye Shapes" {
goto fem_eyes_1
} <PREMIUM> "Done"{
goto female_custom_1
}
"Ice Blue" {
@MC changes eyesColor into Ice Blue
goto fem_eyecolor_1
} "Aqua Blue" {
@MC changes eyesColor into Blue Aqua
goto fem_eyecolor_1
} "Deep Blue" {
@MC changes eyesColor into Blue Deep
goto fem_eyecolor_1
} "Blue Green" {
@MC changes eyesColor into Blue Green
goto fem_eyecolor_1
} <GREEN> "Eye Shapes" {
goto fem_eyes_1
} <PREMIUM> "Done"{
goto female_custom_1
}
"Silver" {
@MC changes eyesColor into Grey Cool
goto fem_eyecolor_1
} "Green" {
@MC changes eyesColor into Green Emerald
goto fem_eyecolor_1
} "Hazel" {
@MC changes eyesColor into Hazel
goto fem_eyecolor_1
} "Dark Hazel" {
@MC changes eyesColor into Hazel Dark
goto fem_eyecolor_1
} <GREEN> "Eye Shapes" {
goto fem_eyes_1
} <PREMIUM> "Done"{
goto female_custom_1
}
"Red" {
@MC changes eyesColor into Red
goto fem_eyecolor_1
} "Violet" {
@MC changes eyesColor into Violet
goto fem_eyecolor_1
} <GREEN> "Eye Shapes" {
goto fem_eyes_1
} <PREMIUM> "Done"{
goto female_custom_1
}

####################### MOUTH SHAPE #######################

label fem_mouth_1

        NARRATOR
    Lip shapes.

choice [shouldPaginate: YES]
"Full Heart" {
@MC changes mouth into Full Heart Pouty
goto fem_mouth_1
}"Full Round" {
@MC changes mouth into Full Round Pouty
goto fem_mouth_1
}"Medium Heart" {
@MC changes mouth into Medium Heart Natural
goto fem_mouth_1
}"Medium Thin" {
@MC changes mouth into Medium Thin
goto fem_mouth_1
}<GREEN>"Change Color"{
goto fem_mouthcolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Thin Heart" {
@MC changes mouth into Thin Heart
goto fem_mouth_1
}"Small Heart" {
@MC changes mouth into Small Heart
goto fem_mouth_1
}"Flat Round" {
@MC changes mouth into Full Round Flat Top Skin
goto fem_mouth_1
}"Medium Downturned" {
@MC changes mouth into Medium Downturned Pout
goto fem_mouth_1
}<GREEN>"Change Color"{
goto fem_mouthcolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Full Flat Top" {
@MC changes mouth into Full Flat Top Pouty
goto fem_mouth_1
}"Full Wide" {
@MC changes mouth into Full Wide
goto fem_mouth_1
}"Heart Shaped" {
@MC changes mouth into Heart Shaped Pout
goto fem_mouth_1
}"Heart with Braces" {
@MC changes mouth into Heart Shaped Pout Braces
goto fem_mouth_1
}<GREEN>"Change Color"{
goto fem_mouthcolor_1
} <PREMIUM>"Done"{
goto female_custom_1
}

####################### MOUTH COLOR #######################

label fem_mouthcolor_1

        NARRATOR
    All lip colors.

choice
"Natural" {
goto fem_NaturalColors_1
} "Gloss" {
goto fem_GlossColors_1
} "Matte" {
goto fem_MatteColors_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Lip Shapes" {
goto fem_mouth_1
}

label fem_NaturalColors_1

        NARRATOR
    Natural lip colors.

choice [shouldPaginate: YES]
"Fair Rose" {
@MC changes mouthColor into Fair Rose Matte
goto fem_NaturalColors_1
} "Fair Neutral" {
@MC changes mouthColor into Fair Neutral Matte
goto fem_NaturalColors_1
} "Fair Gold" {
@MC changes mouthColor into Fair Gold Matte
goto fem_NaturalColors_1
} "Beige Light Gold" {
@MC changes mouthColor into Beige Light Gold Matte
goto fem_NaturalColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Beige Gold" {
@MC changes mouthColor into Beige Gold Matte
goto fem_NaturalColors_1
} "Beige Rose" {
@MC changes mouthColor into Beige Rose
goto fem_NaturalColors_1
} "Beige Deep Neutral" {
@MC changes mouthColor into Beige Deep Neutral
goto fem_NaturalColors_1
} "Tan Deep Gold" {
@MC changes mouthColor into Tan Deep Gold
goto fem_NaturalColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Tan Deep Neutral" {
@MC changes mouthColor into Tan Deep Neutral
goto fem_NaturalColors_1
} "Brown Neutral" {
@MC changes mouthColor into Brown Neutral
goto fem_NaturalColors_1
} "Brown Gold" {
@MC changes mouthColor into Brown Gold
goto fem_NaturalColors_1
} "Brown Deep Gold" {
@MC changes mouthColor into Brown Deep Gold
goto fem_NaturalColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Brown Deep Rose" {
@MC changes mouthColor into Brown Deep Rose
goto fem_NaturalColors_1
} <PREMIUM> "Done" {
goto female_custom_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
}

label fem_GlossColors_1

        NARRATOR
    Gloss lipstick colors.

choice [shouldPaginate: YES]
"Peach" {
@MC changes mouthColor into Peach Gloss
goto fem_GlossColors_1
} "Light Peach" {
@MC changes mouthColor into Pink Peach Lt Gloss
goto fem_GlossColors_1
} "Beige Pink" {
@MC changes mouthColor into Pink Beige Gloss
goto fem_GlossColors_1
} "Medium Pink" {
@MC changes mouthColor into Pink Medium Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Warm Pink" {
@MC changes mouthColor into Pink Warm Gloss
goto fem_GlossColors_1
} "Hot Pink" {
@MC changes mouthColor into Pink Hot Gloss
goto fem_GlossColors_1
} "Deep Pink" {
@MC changes mouthColor into Pink Deep Gloss
goto fem_GlossColors_1
} "Pink Peach" {
@MC changes mouthColor into Pink Peach Medium Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Neutral Nude" {
@MC changes mouthColor into Neutral Medium Nude Gloss
goto fem_GlossColors_1
} "Light Nude" {
@MC changes mouthColor into Rose Light Nude Gloss
goto fem_GlossColors_1
} "Medium Nude" {
@MC changes mouthColor into Rose Medium Nude Gloss
goto fem_GlossColors_1
} "Dark Nude" {
@MC changes mouthColor into Rose Dark Nude Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Rose" {
@MC changes mouthColor into Rose Gloss
goto fem_GlossColors_1
} "Mauve" {
@MC changes mouthColor into Mauve Gloss
goto fem_GlossColors_1
} "Pastel Purple" {
@MC changes mouthColor into Purple Pastel Gloss
goto fem_GlossColors_1
} "Deep Purple" {
@MC changes mouthColor into Purple Deep Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Red" {
@MC changes mouthColor into Red Gloss
goto fem_GlossColors_1
} "Deep Red" {
@MC changes mouthColor into Red Deep Gloss
goto fem_GlossColors_1
} "Plum" {
@MC changes mouthColor into Plum Gloss
goto fem_GlossColors_1
} "Violet" {
@MC changes mouthColor into Violet Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Blood Orange" {
@MC changes mouthColor into Blood Orange Gloss
goto fem_GlossColors_1
} "Red Garnet" {
@MC changes mouthColor into Red Garnet Gloss
goto fem_GlossColors_1
} "Blackberry" {
@MC changes mouthColor into Blackberry Gloss
goto fem_GlossColors_1
} "Pink Cashmere" {
@MC changes mouthColor into Pink Cashmere Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Ash Deep" {
@MC changes mouthColor into Ash Deep Gloss
goto fem_GlossColors_1
} "Dark Mauve" {
@MC changes mouthColor into Dark Mauve Gloss
goto fem_GlossColors_1
} "Dark Amethyst" {
@MC changes mouthColor into Dark Amethyst Gloss
goto fem_GlossColors_1
} "Royal Blue" {
@MC changes mouthColor into Royal Blue Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Dark Apricot" {
@MC changes mouthColor into Dark Apricot Gloss
goto fem_GlossColors_1
} "Copper Deep" {
@MC changes mouthColor into Copper Deep Gloss
goto fem_GlossColors_1
} "Gold Deep" {
@MC changes mouthColor into Gold Deep Gloss
goto fem_GlossColors_1
} "Black" {
@MC changes mouthColor into Black Gloss
goto fem_GlossColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}

label fem_MatteColors_1

        NARRATOR
    Matte lipstick colors.

choice [shouldPaginate: YES]
"Peach" {
@MC changes mouthColor into Peach Matte
goto fem_MatteColors_1
} "Light Peach" {
@MC changes mouthColor into Pink Peach Light Matte
goto fem_MatteColors_1
} "Beige Pink" {
@MC changes mouthColor into Pink Beige Matte
goto fem_MatteColors_1
} "Medium Pink" {
@MC changes mouthColor into Pink Medium Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Warm Pink" {
@MC changes mouthColor into Pink Warm Matte
goto fem_MatteColors_1
} "Hot Pink" {
@MC changes mouthColor into Pink Hot Matte
goto fem_MatteColors_1
} "Deep Pink" {
@MC changes mouthColor into Pink Deep Matte
goto fem_MatteColors_1
} "Pink Peach" {
@MC changes mouthColor into Pink Peach Medium Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Neutral Nude" {
@MC changes mouthColor into Neutral Medium Nude Matte
goto fem_MatteColors_1
} "Light Nude" {
@MC changes mouthColor into Rose Light Nude Matte
goto fem_MatteColors_1
} "Medium Nude" {
@MC changes mouthColor into Rose Medium Nude Matte
goto fem_MatteColors_1
} "Dark Nude" {
@MC changes mouthColor into Rose Dark Nude Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Rose" {
@MC changes mouthColor into Rose Matte
goto fem_MatteColors_1
} "Mauve" {
@MC changes mouthColor into Mauve Matte
goto fem_MatteColors_1
} "Pastel Purple" {
@MC changes mouthColor into Purple Pastel Matte
goto fem_MatteColors_1
} "Deep Purple" {
@MC changes mouthColor into Purple Deep Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Red" {
@MC changes mouthColor into Red Matte
goto fem_MatteColors_1
} "Deep Red" {
@MC changes mouthColor into Red Deep Matte
goto fem_MatteColors_1
} "Plum" {
@MC changes mouthColor into Plum Matte
goto fem_MatteColors_1
} "Violet" {
@MC changes mouthColor into Violet Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Blood Orange" {
@MC changes mouthColor into Blood Orange Matte
goto fem_MatteColors_1
} "Red Garnet" {
@MC changes mouthColor into Red Garnet Matte
goto fem_MatteColors_1
} "Blackberry" {
@MC changes mouthColor into Blackberry Matte
goto fem_MatteColors_1
} "Pink Cashmere" {
@MC changes mouthColor into Pink Cashmere Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Ash Deep" {
@MC changes mouthColor into Ash Deep Matte
goto fem_MatteColors_1
} "Dark Mauve" {
@MC changes mouthColor into Dark Mauve Matte
goto fem_MatteColors_1
} "Dark Amethyst" {
@MC changes mouthColor into Dark Amethyst Matte
goto fem_MatteColors_1
} "Royal Blue" {
@MC changes mouthColor into Royal Blue Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}
"Dark Apricot" {
@MC changes mouthColor into Dark Apricot Matte
goto fem_MatteColors_1
} "Copper Deep" {
@MC changes mouthColor into Copper Deep Matte
goto fem_MatteColors_1
} "Gold Deep" {
@MC changes mouthColor into Gold Deep Matte
goto fem_MatteColors_1
} "Black" {
@MC changes mouthColor into Black Matte
goto fem_MatteColors_1
} <GREEN> "Try Other Colors" {
goto fem_mouthcolor_1
} <PREMIUM> "Done" {
goto female_custom_1
}

####################### NOSE SHAPE #######################

label fem_nose_1

        NARRATOR
    Nose shapes.

choice [shouldPaginate: YES]
"Defined Natural" {
@MC changes nose into Defined Natural
goto fem_nose_1
} "Grecian Soft" {
@MC changes nose into Grecian Soft
goto fem_nose_1
} "Round Broad" {
@MC changes nose into Round Broad
goto fem_nose_1
} "Round Button" {
@MC changes nose into Round Button
goto fem_nose_1
} "Round Button Upturned" {
@MC changes nose into Round Button Upturned
goto fem_nose_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Round Downturned" {
@MC changes nose into Round Downturned
goto fem_nose_1
} "Round Flared Upturned" {
@MC changes nose into Round Flared Upturned
goto fem_nose_1
} "Round Flared Downturned" {
@MC changes nose into Round Flared Downturned
goto fem_nose_1
} "Pointed Downturned" {
@MC changes nose into Pointed Downturned
goto fem_nose_1
} "Broad Wide" {
@MC changes nose into Broad Wide
goto fem_nose_1
} <PREMIUM>"Done"{
goto female_custom_1
}
"Round Flared Downturned Broad" {
@MC changes nose into Round Flared Downturned Broad
goto fem_nose_1
} "Round Button Wide" {
@MC changes nose into Round Button Wide
goto fem_nose_1
} "Round Broad Downturned" {
@MC changes nose into Round Broad Downturned
goto fem_nose_1
} <PREMIUM>"Done"{
goto female_custom_1
}

####################### HAIR STYLE #######################

label fem_hair_1

        NARRATOR
    All hairstyles.

choice
"Short Hair"{
goto fem_hairShort_1
}"Mid-length Hair"{
goto fem_hairMedium_1
}"Long Hair"{
goto fem_hairLong_1
}"Styled Hair"{
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}

label fem_hairShort_1

        NARRATOR
    Short hairstyles.

choice [shouldPaginate: YES]
"Afro" {
@MC changes hair into Afro
goto fem_hairShort_1
} "Short Afro" {
@MC changes hair into Short Afro
goto fem_hairShort_1
} "Classic Bob" {
@MC changes hair into Classic Bob
goto fem_hairShort_1
} "Curly Bob" {
@MC changes hair into Curly Bob
goto fem_hairShort_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Faux Hawk" {
@MC changes hair into Long Faux Hawk Solid
goto fem_hairShort_1
}"Fade" {
@MC changes hair into Short Curly Fade
goto fem_hairShort_1
}"Pixie" {
@MC changes hair into Short Pixie
goto fem_hairShort_1
}"Punk Pixie" {
@MC changes hair into Punk Pixie
goto fem_hairShort_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Short Wavy" {
@MC changes hair into Short Wavy Hair Solid
goto fem_hairShort_1
}"Blunt Bangs" {
@MC changes hair into Blunt Bangs Short
goto fem_hairShort_1
} "Wavy Side Shaved" {
@MC changes hair into Short Wavy Side Shave
goto fem_hairShort_1
}"Curly Blow Out" {
@MC changes hair into Short Curly Blow Out
goto fem_hairShort_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Crew Cut" {
@MC changes hair into Crew Cut
goto fem_hairShort_1
}"Short Fringe" {
@MC changes hair into Short Layered Fringe
goto fem_hairShort_1
}"Straight Tucked" {
@MC changes hair into Short Straight Tucked
goto fem_hairShort_1
}"Emo Pixie" {
@MC changes hair into Emo Pixie
goto fem_hairShort_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Bantu Knots" {
@MC changes hair into Bantu Knots
goto fem_hairShort_1
}"Conservative Cut" {
@MC changes hair into Conservative Cut
goto fem_hairShort_1
}"Parted Bangs" {
@MC changes hair into Long Bang Short Hair
goto fem_hairShort_1
}"Side Part Curly" {
@MC changes hair into Side Part Curly Asymmetrical
goto fem_hairShort_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Short Flipped" {
@MC changes hair into Short Flipped Wavy Solid
goto fem_hairShort_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}

label fem_hairMedium_1

        NARRATOR
    Medium hairstyles.

choice [shouldPaginate: YES]
"Braided" {
@MC changes hair into Medium Braided
goto fem_hairMedium_1
}"Medium Dreadlocks" {
@MC changes hair into Medium Dreadlocks
goto fem_hairMedium_1
}"Hair Flip" {
@MC changes hair into Hair Flip
goto fem_hairMedium_1
}"Straight" {
@MC changes hair into Straight Medium
goto fem_hairMedium_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Lob Bangs" {
@MC changes hair into Lob Bangs Blunt
goto fem_hairMedium_1
}"Overgrown Bangs" {
@MC changes hair into Medium Straight Overgrown Bangs
goto fem_hairMedium_1
}"Wavy Ombre" {
@MC changes hair into Short Wavy Ombre
goto fem_hairMedium_1
}"Medium Curly" {
@MC changes hair into Medium Curly Solid
goto fem_hairMedium_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Voluminous Curls" {
@MC changes hair into Voluminous Curls
goto fem_hairMedium_1
} "Parted Wavy" {
@MC changes hair into Short Wavy Asymmetrical
goto fem_hairMedium_1
} "Wavy Side Curls" {
@MC changes hair into Wavy Side Curls
goto fem_hairMedium_1
} "Layered Wavy Bob" {
@MC changes hair into Layered Wavy Bob
goto fem_hairMedium_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Straight Down" {
@MC changes hair into Medium Straight Down
goto fem_hairMedium_1
} "Shoulder Curly" {
@MC changes hair into Medium Shoulder Curly
goto fem_hairMedium_1
} "Natural Afro" {
@MC changes hair into Natural Afro
goto fem_hairMedium_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}

label fem_hairLong_1

        NARRATOR
    Long hairstyles.

choice [shouldPaginate: YES]
"Beach Wave" {
@MC changes hair into Beach Wave Hair
goto fem_hairLong_1
}"Long Braided" {
@MC changes hair into Long Braided
goto fem_hairLong_1
}"Long Dreadlocks" {
@MC changes hair into Long Dreadlocks
goto fem_hairLong_1
}"Feathered" {
@MC changes hair into Long Feathered
goto fem_hairLong_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Long Blunt Bangs" {
@MC changes hair into Long Straight Loose Bangs Blunt Solid
goto fem_hairLong_1
}"Sideswept Bangs" {
@MC changes hair into Long Straight Loose Bangs Sideswept Solid
goto fem_hairLong_1
}"Straight" {
@MC changes hair into Long Straight Loose Solid
goto fem_hairLong_1
}"Wavy Long" {
@MC changes hair into Wavy Long
goto fem_hairLong_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Wavy Parted" {
@MC changes hair into Long Wavy Parted Hair
goto fem_hairLong_1
}"Feathered Bangs" {
@MC changes hair into Long Feathered Bangs Blunt
goto fem_hairLong_1
}"Braided Dreads Parted" {
@MC changes hair into Dreads Braided
goto fem_hairLong_1
}"Long Voluminous Curls" {
@MC changes hair into Long Voluminous Curls Loose
goto fem_hairLong_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Long Curls" {
@MC changes hair into Long Curls
goto fem_hairLong_1
}"Wavy Princess Braid" {
@MC changes hair into Long Down Wavy Princess Braid
goto fem_hairLong_1
}"Bouffant Wavy" {
@MC changes hair into Bouffant Long Wavy
goto fem_hairLong_1
}"Loose Curls" {
@MC changes hair into Long Loose Curls
goto fem_hairLong_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Wavy Blowout" {
@MC changes hair into Long Wavy Blowout
goto fem_hairLong_1
}"Side Shave" {
@MC changes hair into Long Side Shave
goto fem_hairLong_1
}"Scene Hair" {
@MC changes hair into Scene Swoosh
goto fem_hairLong_1
}"Slicked Back" {
@MC changes hair into Long Straight Slicked Back
goto fem_hairLong_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Thick Curls" {
@MC changes hair into Long Thick Curls
goto fem_hairLong_1
}"Loose Bangs Sideswept" {
@MC changes hair into Long Wavy Loose Bangs Sideswept
goto fem_hairLong_1
}"Layered Side Part" {
@MC changes hair into Long Layered Side Part
goto fem_hairLong_1
}"Widows Peak" {
@MC changes hair into Long Tapered Widows Peak
goto fem_hairLong_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}

label fem_hairUp_1

        NARRATOR
    Updo hairstyles.

choice [shouldPaginate: YES]
"Braided Bun" {
@MC changes hair into Braided Bun
goto fem_hairUp_1
}"Short Ponytail" {
@MC changes hair into Short High Ponytail
goto fem_hairUp_1
}"Long Ponytail" {
@MC changes hair into Long High Ponytail
goto fem_hairUp_1
}"Morning Updo" {
@MC changes hair into Morning Updo
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Small Bun" {
@MC changes hair into Small Bun
goto fem_hairUp_1
}"Double Dutch Braids" {
@MC changes hair into Long Double Dutch Braids
goto fem_hairUp_1
}"Pinup Rolls" {
@MC changes hair into Pinup Victory Rolls
goto fem_hairUp_1
}"Sleek Ponytail" {
@MC changes hair into Sleek Ponytail
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Shoulder Braid" {
@MC changes hair into Over Shoulder Braid
goto fem_hairUp_1
}"Full Pigtail" {
@MC changes hair into Full Pigtail
goto fem_hairUp_1
}"Updo Braids" {
@MC changes hair into Braids Updo
goto fem_hairUp_1
}"Double Buns" {
@MC changes hair into Double Buns
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Double Afro Puffs" {
@MC changes hair into Curly Double Afro Puffs
goto fem_hairUp_1
}"Curly Bun Half-up" {
@MC changes hair into Medium Shoulder Curly Bun Hair
goto fem_hairUp_1
}"Messy Sock Bun" {
@MC changes hair into Messy Sock Bun
goto fem_hairUp_1
}"Messy Ponytail" {
@MC changes hair into Short Messy Pony Tail
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Blunt Bangs Ponytail" {
@MC changes hair into Pony Tail Blunt Bangs
goto fem_hairUp_1
}"Side Swept Updo" {
@MC changes hair into Side Swept Updo Long
goto fem_hairUp_1
}"Long Wavy Updo" {
@MC changes hair into Updo Pony Wavy Long
goto fem_hairUp_1
}"Punk Hair" {
@MC changes hair into Cropped Punk Cut
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Updo Low Bun" {
@MC changes hair into Updo
goto fem_hairUp_1
}"Updo Curly Messy" {
@MC changes hair into Updo Curly Messy
goto fem_hairUp_1
}"Updo Twist Bangs" {
@MC changes hair into Updo High Twist Bangs Blunt
goto fem_hairUp_1
}"Spiral Pigtail" {
@MC changes hair into High Spiral Pigtail Hair
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Updo Princess Braid" {
@MC changes hair into Long Updo Wavy Princess Braid
goto fem_hairUp_1
}"Natural Curly Updo" {
@MC changes hair into Natural Curly Pulled Updo Hair
goto fem_hairUp_1
}"Updo Curly Long" {
@MC changes hair into Updo Curly Long
goto fem_hairUp_1
}"Long Curl Half Updo" {
@MC changes hair into Long Curl Half Updo
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}
"Braided Afro Bun" {
@MC changes hair into Braided Afro Bun
goto fem_hairUp_1
}"Side Shave Braids" {
@MC changes hair into Curly Braids Hair
goto fem_hairUp_1
}<GREEN>"Change Color"{
goto fem_haircolor_1
}<PREMIUM>"Back to Styles"{
goto fem_hair_1
}

####################### HAIR COLOR #######################

label fem_haircolor_1

        NARRATOR
    All hair colors.

choice
"Dark"{
goto fem_hairDark_1
}"Light" {
goto fem_hairLight_1
}"Dyed"{
goto fem_hairDye_1
}<PREMIUM>"Done"{
goto female_custom_1
}<GREEN> "Back to Styles" {
goto fem_hair_1
}

label fem_hairDark_1

        NARRATOR
    Dark hair colors.

choice [shouldPaginate: YES]
"Light Brown" {
@MC changes hairColor into Light Brown
goto fem_hairDark_1
}"Warm Brown" {
@MC changes hairColor into Medium Warm Brown
goto fem_hairDark_1
}"Medium Brown" {
@MC changes hairColor into Medium Brown
goto fem_hairDark_1
}"Chestnut Brown"{
@MC changes hairColor into Chestnut Brown
goto fem_hairDark_1
}<GREEN>"Different Colors"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}
"Dark Brown"{
@MC changes hairColor into Dark Brown
goto fem_hairDark_1
}"Brunette Brown"{
@MC changes hairColor into Brunette Brown
goto fem_hairDark_1
}"Ginger Red" {
@MC changes hairColor into Ginger Red
goto fem_hairDark_1
}"Burgundy Red" {
@MC changes hairColor into Burgundy Red
goto fem_hairDark_1
}<GREEN>"Different Colors"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}
"Deep Brown" {
@MC changes hairColor into Deep Brown
goto fem_hairDark_1
}"Brown Black" {
@MC changes hairColor into Brown Black
goto fem_hairDark_1
}"Dark Black" {
@MC changes hairColor into Black Dark
goto fem_hairDark_1
}"Jet Black" {
@MC changes hairColor into Black Jet
goto fem_hairDark_1
}<GREEN>"Different Colors"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}

label fem_hairLight_1

        NARRATOR
    Light hair colors.

choice [shouldPaginate: YES]
"Platinum Blonde" {
@MC changes hairColor into Platinum Blonde
goto fem_hairLight_1
}"Dirty Blonde" {
@MC changes hairColor into Dirty Blonde
goto fem_hairLight_1
}"Honey Blonde" {
@MC changes hairColor into Honey Blonde
goto fem_hairLight_1
}"Strawberry Blonde" {
@MC changes hairColor into Strawberry Blonde
goto fem_hairLight_1
}<GREEN>"Different Colors"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}
"Medium Blonde" {
@MC changes hairColor into Blonde Medium
goto fem_hairLight_1
}"Ash Blonde" {
@MC changes hairColor into Ash Blonde
goto fem_hairLight_1
}"Peach Blonde" {
@MC changes hairColor into Peach Blonde
goto fem_hairLight_1
}"Platinum White" {
@MC changes hairColor into Platinum White
goto fem_hairLight_1
}<GREEN>"Different Colors"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}

label fem_hairDye_1

        NARRATOR
    Dyed hair colors.

choice
"Pink/Purple" {
goto fem_hairDye_Pink_1
}"Blue/Green" {
goto fem_hairDye_Blue_1
}"Red/Yellow" {
goto fem_hairDye_Red_1
}"White/Grey" {
goto fem_hairDye_White_1
}<GREEN>"Different Colors"{
goto fem_haircolor_1
}<PREMIUM>"Done"{
goto female_custom_1
}

label fem_hairDye_Pink_1

        NARRATOR
    Pink and purple hair colors.

choice [shouldPaginate: YES]
"Hot Pink" {
@MC changes hairColor into Hot Pink
goto fem_hairDye_Pink_1
} "Light Pink" {
@MC changes hairColor into Pink Lt
goto fem_hairDye_Pink_1
} "Warm Pink" {
@MC changes hairColor into Warm Pink
goto fem_hairDye_Pink_1
} "Rose Gold" {
@MC changes hairColor into Rose Gold
goto fem_hairDye_Pink_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}
"Purple" {
@MC changes hairColor into Red Purple
goto fem_hairDye_Pink_1
} "Purple Lilac" {
@MC changes hairColor into Purple Lilac
goto fem_hairDye_Pink_1
} "Plum" {
@MC changes hairColor into Plum
goto fem_hairDye_Pink_1
} "Dark Purple" {
@MC changes hairColor into Purple
goto fem_hairDye_Pink_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}
"Pastel Lavender" {
@MC changes hairColor into Pastel Purple Lavender
goto fem_hairDye_Pink_1
}<PREMIUM>"Done" {
goto female_custom_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}

label fem_hairDye_Blue_1

        NARRATOR
    Blue and green hair colors.

choice [shouldPaginate: YES]
"Blue" {
@MC changes hairColor into Blue
goto fem_hairDye_Blue_1
} "Light Blue" {
@MC changes hairColor into Cornflower Blue
goto fem_hairDye_Blue_1
} "Aqua Blue" {
@MC changes hairColor into Aqua Blue
goto fem_hairDye_Blue_1
} "Dark Blue" {
@MC changes hairColor into Blue Black
goto fem_hairDye_Blue_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}
"Green" {
@MC changes hairColor into Green
goto fem_hairDye_Blue_1
} "Lime Green" {
@MC changes hairColor into Yellow Green
goto fem_hairDye_Blue_1
} "Mint" {
@MC changes hairColor into Mint
goto fem_hairDye_Blue_1
} "Aqua Green" {
@MC changes hairColor into Aqua Green
goto fem_hairDye_Blue_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}
"Pastel Blue" {
@MC changes hairColor into Pastel Blue
goto fem_hairDye_Blue_1
} "Pastel Mint" {
@MC changes hairColor into Pastel Mint
goto fem_hairDye_Blue_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}

label fem_hairDye_Red_1

        NARRATOR
    Red, yellow, & orange hair colors.

choice [shouldPaginate: YES]
"Yellow" {
@MC changes hairColor into Yellow
goto fem_hairDye_Red_1
} "Orange" {
@MC changes hairColor into Orange
goto fem_hairDye_Red_1
} "Red" {
@MC changes hairColor into Red
goto fem_hairDye_Red_1
} "Copper Red" {
@MC changes hairColor into Copper Red
goto fem_hairDye_Red_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}

label fem_hairDye_White_1

        NARRATOR
    White & grey hair colors.

choice [shouldPaginate: YES]
"Grey" {
@MC changes hairColor into Cool Gray
goto fem_hairDye_White_1
} "Light Grey" {
@MC changes hairColor into Aqua Gray
goto fem_hairDye_White_1
}"White" {
@MC changes hairColor into Warm White
goto fem_hairDye_White_1
}"Ice" {
@MC changes hairColor into Platinum Ice
goto fem_hairDye_White_1
}<GREEN>"Back to Dyed Colors"{
goto fem_hairDye_1
}<PREMIUM>"Done" {
goto female_custom_1
}

label female_1_end
        NARRATOR
    Are you happy with how you look?
choice
<PREMIUM> "Yes, I look gorgeous!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Customization Template Credit
@MC is primp_neutral
} <GREEN> "No, I want to change something." {
goto female_custom_1
}

#   END SCRIPT } 

#========== END OF CC SCRIPT =============

goto game_menu

} "MENU-POINTS" {
#========== PLACE YOUR POINTS SCRIPT AFTER THIS LINE =============

label points
        NARRATOR
    Click to see points:
    
choice 
"MC" {
        NARR
    You have 8 points!
goto points
} "LI" {
        NARR 
    LI has 10 points! 
goto points
} "Friend" {
        NARR
    Friend has 10 points!
goto points
} <PREMIUM> "Done" {
    goto game_menu
}

#========= END OF POINTS SCRIPT =============
goto game_menu

} "MENU-SKIP" {

        NARR
    Do you want to |bold|skip this episode?
    
choice 
<PREMIUM>"Yes, let me skip!" {
goto end 
} "No, take me back to the menu" {
goto game_menu   
}
}


    
label end
#========== PLACE YOUR END SCRIPT HERE =============
        NARRATOR
    Thanks for reading! 
    
        NARRATOR
    Follow me on instagram! |bold|@dukii_x

Help—

If you’re struggling with the script, go ahead and comment below and I’ll try to help you as best I can.

16 Likes

This is beautiful!!

2 Likes

Is it okay if I want a different background

tysm :heart_eyes:

1 Like

of course! you can use any background you want, just replace it with the existing one

1 Like

Hm okay

Is this a request thread?

You can make custom button requests:

Custom Button Form
Color : (in rgb or hex)
Name : Start story, skip, customize, etc…

1 Like

Girl, I’m struggeling at this point with an ERROR : There is a { on line…that does not have a matching .
Could you please help me out?

  1. List item

  2. List item

Oh sorry I didn’t see this! Can you send me your script where the error is?

1 Like

You are a literal life saver, thank you so much!

1 Like

Where did you get or make your icon? :sneezing_face:
I’ve been looking for icons for the longest.

Or if you’re willing to, could you make for me?

Sorry, which icon are you referring to? The buttons or my pfp? :sweat_smile:

1 Like

The buttons

Oh i see. I made them on using Figma

If you have any button requests, I can try to make them for you too xx

1 Like

Thank you so much! I’ll check out the website. If ot looks to complicated (I’m dumb lol) I’ll let you know!

I does :rofl: :rofl:

Would you still be willing to help?

Haha, I’m sure you’re not dumb! And sure I can help.

Do you have any design requests? Like for example, you can make the buttons more rounded or more squared. Let me know what font you want to use too. So for instance, you can take a look at Google Fonts, and just let me know what font name you want me to use. Not all of them are supported but I’ll check to see if Figma has the font you request.

Font:
Color:
Button style (rounded or squared):
Label for button (the text on the button):

Thank you!

Font: https://fonts.google.com/specimen/Shadows+Into+Light?preview.text=&preview.text_type=custom
Color: Rose gold
Button style (rounded or squared): How yours look like in the game menu you posted
Label for button (the text on the button): Setting, Stats, Done, Réglages, Statistiques, terminé (both English and French lol)

Here you go! :heart:

Buttons

DONE REGLAGES SETTING STATISTIQUES STATS TERMINE

Let me know what you think, if you want anything changed.

2 Likes