There is a { on line 15 that does not have a matching }

Help i dunno what to do, im trying to let the reader choose theyre gender but it says https://gyazo.com/8cf25763615179d2a264e32bf36c895b
THERE IS A } IN LINE 14 THAT DOESNT HAVE A MATCH!

1 Like

Moved to Directing Help & Tips as that’s where scripting questions live! :v:t2:

Your brackets must be messed up, also you can’t have labels inside the choices move them outside the choices

What do you mean messed up?

At the wrong place

1 Like

what do i do?

What @Apes said

still nothing?

label something
choice
{one
Something happens
}
{two
Something else happens
}
And make sure to use the label too

https://gyazo.com/689f641a9bf5741d35098d21e1c91ece

U didn’t close the bracket

wdym?

Use this { after the choices

i did? it says “female” {

NARR
Dialogue.

choice
"Female "{
gain female
goto custom_female
}“Male”{
gain male
goto custom_male
}

label custom_female
#CUSTOMISATION HERE
#AT THE END
goto story_start

label custom_male
#CUSTOMISATION HERE
#AT THE END
goto story_start

label story_start
if (female) {
goto female_story
} else {
goto male_story
}

label female_story
#story with female character goes here
#at the end
goto finish

label male_story
#story with male character goes here
#at the end
goto finish

label finish
#finish the episode

Change the name to your customisation labels this is just an example

}
This one

that made it worse, now i have all these warnings and it said unexpected block end?

Because you need something after the label name try put @pause for a beat after each label

https://gyazo.com/f3e761e30f95541a98970fa2e0f79f91
now its male that says the first error the missing }

That’s why I made you this template

}“Male”{

}

You’re missing this bracket in bold