How to let the the name show at the top of the speech bubble chosen by player

Hey guys… I am being unable to figure out the code for showing the name of a certain character that reader chose on the top of the speech bubble when the mentioned character speaks… Anyone can help???

This depends on whichever variable you use inside the brackets, if you for example used this code by @Dara.Amarie

input What's the name of your main character?|What's the name of your main character|Done. (NAME)

if (NAME is "") {

        NARRATOR
    You do need a name...

goto first_name_input

} else {
continue
}

        NARRATOR
    [NAME] is such a beautiful name!

than NAME is the variable you used, which means you simply need to use NAME as the display name of your character

Like this:

Or you should replace the word “Name” with the name of your character. It will work like that.

1 Like

Aaright I get it… Thanks a lot guys!!

1 Like