I need help changing a character's script name

I want to know if this is possible:

I want to change my character’s script name depending on the choice the reader makes Example:

      NARR
 Pick the name of GUY

choice guy
“bryan”{
#And this will be where @GUY 's script name changes to “bryan” through the story without having to use if’s every time he talks in a scene.
}
“oscar”{
#And this will be where @GUY 's script name changes to “oscar” through the story without having to use if’s every time he talks in a scene.
}
“dwight”{
#And this will be where @GUY 's script name changes to “dwight” through the story without having to use if’s every time he talks in a scene
}

Is it possible to change my character’s @GUY 's script name WITHOUT using inputs or creating 3 identical guys with different names and having to use:
if (guy=“bryan”){
BRYAN
Hi
#+400 lines of script with bryan
}elif(guy=“oscar”){
OSCAR
Hi
#+exact lines as for bryan but with oscar.
}else{
DWIGHT
Hi
#more repeated lines as before but for dwight.
}

If this is a thing, it would save me a lot of stress :joy:
I had to rewrite this for other people to understand me better

Sorry for my ignorance, can you add an example? D:

Hmm that’s not exactly what I needed :c
But thanks for your help!

Try code:

NARRATOR
Which name would you prefer?
choice (NAME)
“Nelly” continue
“Yuki” continue

Yeh, what @Apes said, then just add NAME as the display name for you character

1 Like

I tried it with my new example. GUY’s name is still displayed as GUY instead of one of the names in the options when I add dialogues to GUY (whose script name is also GUY lol) :pensive:

Did you change display name to NAME?

1 Like

Holy balls I thought I had changed it… it works. THANK YOU SO MUCH!!! Imma criii… :sob:

I have another question if you don’t mind…
If I were to use first and last name in the choices, how can I mention only his first name without saying his whole name? If it were possible of course :flushed:

You have to give different choices for that and give different names to both of these choices