"Stupid" questions that never get answered? Get The Help Here!

Sorry I didn’t put the correct script there:

@BOY walks to spot 0.786 144 133 in zone 3
@YOU walks to spot 0.581 12 160 and YOU does it while walk_rear THEN YOU is idle_rear

1 Like

Hey, how did yo make the screen shake when April fell off her bed in the first episode of I feel it coming?

1 Like

It’s all zoom work :slight_smile:

Here’s the example from this scene:

&APRIL spot 0.965 85 177 AND APRIL is run_fall AND APRIL faces right
@zoom on 936 163 to 226% in 0.1
@zoom on 944 0 to 226% in 0.1
@zoom on 936 163 to 226% in 0.1
@zoom on 944 0 to 226% in 0.1

And Thank you so much for reading :heart:

2 Likes

Thanks.
Btw I love your story❤️

2 Likes

How would I make someone keep a choice in the same episode? For example, my MC is having a flashback, and she’s in different clothes the the reader picked at the beginning of the episode. Is there a way that after the flashback is over, I can have her change back into the clothes the reader picked again, without them having to pick the choice twice?

1 Like

How would I put it in the script if I want everyone to enter at the same time, and be doing an animation while entering. This is what I have right now…
@ROSE enters right to screen center and is laugh_crackup and LENA enters right to screen right and is laugh_giggle and NOAH enters right to screen right and is laugh_chuckle

@ROSE enters from right to screen center AND ROSE is laugh_crackup AND LENA enters from right to screen right AND LENA is laugh_giggle AND NOAH enters from right to screen right AND NOAH is laugh_chuckle

how do you make the background fade into another background?

you could use

transition fade in black 1

or

transition fade out black 1

2 Likes

what meant was for that background to fade, not the transitioning

well then, no you cant.

You have to update one of the backgrounds as an overlay and cover a whole screen then use opacity command

cant you make the characters translucent too? how do you do that?

ok thanks

with overlays

You can

ahh thank you!!

1 Like

Um, I’m having an error with unexpected garbage. Here is the script so you can look it over. It is from a few lines above the error to the end.

label choosing_outfit_2
YOU (think_rubchin)
(What should I wear???)
choice “School Day Fun” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into YOU_SCHOOL_DAY_FUN
YOU
Do I want to wear this?
choice
“YES” {
gain YOU_SCHOOL_DAY_FUN
} “NO” {
go to label choosing_outfit 2
} “School Day Sporty” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into YOU_SCHOOL_DAY_SPORTY
YOU
Do I want to wear this?
choice
“YES” {
gain YOU_SCHOOL_DAY_SPORTY
} “NO” {
go to label choosing_outfit_2
} “School Day Fancy” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into SCHOOL_DAY_FANCY
YOU
Do I want to wear this?
choice
“YES” {
gain SCHOOL_DAY_FANCY
} “NO” {
go to label choosing_outfit_2
} “Making An Entrance” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into SCHOOL_DAY_ENTRANCE
YOU
Do I want to wear this?
choice
“YES” {
gain SCHOOL_DAY_ENTRANCE
} “NO” {
go to label choosing_outfit_2
}

@pause for a beat

music alarmclock_digital
YOU (admire_happy)
(Time for school!!)
music off
@YOU is dustoff_neutral_loop
YOU (primp_neutral)
Ooh, I look good!

@YOU walks to spot 1.280 171 83 in zone 2

EXT. HIGH SCHOOL EXTERIOR - DAY
@pan to zone 3
@pan to zone 1
@transition fade out black 3
INT. BLUE SCHOOL HALLWAY - DAY
@pan to zone 2
@pan to zone 3
@pan to zone 2
@pan to zone 1
@remove Sheet Paper White from YOU
@YOU enters from left to screen left
YOU (think_rubchin)
(Now, where is room 256?)
(As a matter of fact…where is everyone?)
@ROSE enters from right to screen center and LENA enters from right to screen right and NOAH enters from right to screen right
@ROSE faces right
@ROSE is laugh_crackup and LENA is laugh_giggle and NOAH is laugh_chuckle
@ROSE walks to spot 1.280 140 3
@LENA walks to spot 1.280 214 8
@NOAH walks to spot 1.280 292 18
@NOAH faces left
@speechbubble is 206 212 to 104% with tail_top_left
ROSE (talk_greet_neutral)
You look lost! What are you doing here so early??
@add Sheet Paper White to YOU

YOU (talk_read_paper_neutral)

I’m here for school. According to my schedule it starts at 7:30?
@remove Sheet Paper White from YOU
@speechbubble is 163 162 to 104% with tail_top_right
LENA
Oh, they must have gotten the times mixed up! They meant 7:30 PM.

YOU

Huh?
@speechbubble is 194 146 to 104% with tail_top_right
NOAH
It’s a night school. They think that teens focus better at night.

YOU (talk_confused_mindblown)

A night school?!
YOU (talk_exclaim_no_worried)
This is not what I signed up for!
@YOU starts idle_awkward_uneasy_loop
ROSE (talk_agree_happy)
Oh honey, it’s okay.
I’m Rose. It’s so nice to meet you.

YOU (talk_awkward_loop)

Yeah, you too.

LENA

And I’m Lena! Ah, we haven’t had a new student in forever.
(if (gain SCHOOL_DAY_ENTRANCE {)
LENA
By the way, you look really good for your first day.
Definetly better than I looked.
Anyway, enough about me.
This is Noah.
} elif(gain YOU_SCHOOL_DAY_FUN) {
LENA
And this is Noah.
}elif (gain YOU_SCHOOL_DAY_SPORTY) {
LENA
And this is Noah.
} else (gain SCHOOL_DAY_FANCY) {
LENA
And this is Noah.
}

@ItsYaGirlNai,

For the if statement, since you are using gains you do not need to include the word gain in the parentheses.

The first line of your if statement is also messed up a little. You have the parentheses around the if and bracket, when it should just be around the (SCHOOL_DAY_ENTRANCE).