Labelling in directing

Please can someone explain labeling and how to do it

1 Like
1 Like

I have a problem with labels too


I keep getting the errors: you cannot have a label inside if/then statements or {}
AND label does not exist

I strictly followed Joseph Evan’s tutorial and it looks exactly the same but mine shows errors

1 Like

send your script

1 Like

INT. JUVIE WELLES BEDROOM - DAY
@cut to zone 2

@ELLA stands screen center AND ELLA faces right

@ELLA starts idle_happy_loop

@pause for 3

label dressing_game

    ELLA (think_rubchin)
(I need to look both professional and fabulous.)

choice
“Sexy in black“{

@ELLA walks to upscreen left in zone 3

@ELLA changes into ELLA_deposition1

}
“Sexy nerd“{

@ELLA walks to upscreen left in zone 3

@ELLA changes into ELLA_deposition2

}
“Sexy in pants“{

@ELLA walks to upscreen left in zone 3

@ELLA changes into ELLA_deposition3

}

@ELLA walks to screen center in zone 2

@pause for a beat

    ELLA (think_rubchin)
(Is this ‘dress for success’ enough?)

choice
“Yes, looking fabulous“{

    ELLA (idle_headbob_neutral_loop)
(This is it!)

}
“Not good enough
”{

goto dressing_game

}

@ELLA exits left
@transition fade out black

Thank you,

B.

1 Like

label dressing_game_1

    CHARACTER

What do I want to wear?

choice (OUTFIT_1)

“Outfit 1” {

@CHARACTER changes into Outfit1

#insert script here

} “Outfit 2” {

@CHARACTER changes into Outfit2

#insert script here

} “Outfit 3” {

@CHARACTER changes into Outfit3

#insert script here

}

    CHARACTER

Do I want to wear this one?

choice

“It’s perfect!” {

#insert script here

} “No, I want to try on the others!” {

goto dressing_game_1

}

try this one.
credit goes to @Dara.Amarie

1 Like

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