Need help giving readers and option to read certain parts of the story

NARRATOR
Would you like to read the explicit scene?
choice
“Yes.” {
#explicit scene goes here
}
“No.” {
goto rest_of_story
}

label rest_of_story

OR

NARRATOR
Would you like to read the explicit scene?
“Yes.” {
#explicit scene goes here
}
“No.” {
}
#the rest of the story goes here

OR

NARRATOR
Would you like to read the explicit scene?
“Yes.” {
gain explicit_scene
}
“No.” {
}
if (explicit_scene) {
#explicit scene goes here
}
#the rest of the story goes here

so there are a lot of ways that you can go about doing this, those are just a few! good luck! :grin:

Help with Labels and Gains

HOW TO: Remember Past Choices (if/elif/else)