Can someone help me with choice outfits after a flashback

I gave a choice for what outfit the reader wanted to wear but I did a flashback of a younger version of my character and I had to change the outfit, how do I go back to present time with the outfit choice?

Can you post the script?

what part? I have the outfit choices in the beginning and the flash back later on?

The outfit choice

NARRATOR
Before we begin. Please, choose the outfit you picked for your day with Damon.
label dressing_Dam
ALY (think)
What should we wear today?
choice
“Blue Dress”{
@ALY changes into Blue dress
@pause for 2
}
“Floral Dress”{
@ALY changes into Floral Dress
@pause for 2
}
“Sunrise Fade Dress”{
@ALY changes into Sunrise Fade Dress
@pause for 2
}
ALY (think)
(Shall I wear this or try something else?)
choice
“Wear this outfit.”{
ALY (blow_kiss)
(This is perfect! I look hot.)
}
“Try something else.”{
goto dressing_Dam
}

You need to add this:

Then, when you need to change back the outfit, you need to code:

if (outfit is “Blue Dress”) {
@ALY changes into Blue dress
}
elif (outfit is “Floral Dress”) {
@ALY changes into Floral Dress
}
else {
@ALY changes into Sunrise Fade Dress
}

This should work

Thank you so much! You are a life saver lol. I have been trying to figure it out all day!

1 Like

Haha no problem!

I just wanted to let you know that it works perfect! Thank you so much again lol

1 Like