Small arrows in choice don't appear

Hey guys, I have a little issue…
This script shows a dressing game, the labels and gotos work perfectly, my problem is, that all of these choices are arranged one below the other.

I want it to look like this (with those little arrows):

But it looks like this:

This is the script (I highlighted each dressing choice differently):

label start_dressing

VIC
(What should I wear?)
choice “Pants 1” {

@VIC is dustoff_neutral_loop
@VIC changes into VIC_pants_1
@VIC is idle_shiftweight_neutral_loop

NARR
Do you want to wear this?
choice “Yes, I look fantastic” {

@VIC +1

goto end_dressing

} “No, let me see the other options” {

goto start_dressing

}

} … and then it goes on till “Pants 6” {

@VIC is dustoff_neutral_loop
@VIC changes into VIC_pants_6
@VIC is idle_shiftweight_neutral_loop

NARR
Do you want to wear this?
choice “Yes, I look fantastic” {

@VIC +6

goto end_dressing

} “No, let me see the other options” {

goto start_dressing

}

}
“Skirt 1” {

@VIC is dustoff_neutral_loop
@VIC changes into VIC_skirt_1
@VIC is idle_shiftweight_neutral_loop

NARR
Do you want to wear this?
choice “Yes, I look fantastic” {

@VIC +11

goto end_dressing

} “No, let me see the other options” {

goto start_dressing

}

} … and then it goes on till “Skirt 6” {

@VIC is dustoff_neutral_loop
@VIC changes into VIC_skirt_6
@VIC is idle_shiftweight_neutral_loop

NARR
Do you want to wear this?
choice “Yes, I look fantastic” {

@VIC +16

goto end_dressing

} “No, let me see the other options” {

goto start_dressing

}

}

The most important point in the script is the one from Pants 6 to Skirt 1 because this should be the point, in which the arrows appear if you get what I’m trying to say… :sweat_smile:

Have a great day!

You need to add [shouldPaginate: YES] next to the word choice

choice [shouldPaginate: YES]
“Option here” {
}

HOW TO: Use [shouldPaginate: YES]

1 Like

Thank you so much! :smiling_face_with_three_hearts:

1 Like

Closed: Marked as solved by op @episodesbylaura :yay: