How do I let readers skip a chapter?

label story_begin

NARR
Do you want to skip the Episode?

choice
“Read it”{

goto chapter_read

}“Skip it”{

goto chapter_skip

}

label chapter_read

NARR
Are you sure you want to read?

choice
“Yes”{

goto chapter_start

}“Go back”{

goto story_begin

}

label chapter_skip

NARR
Are you sure you want to skip?

choice
“Yes”{

goto chapter_end

}“Go back”{

goto story_begin

}

label chapter_start

#your whole story script goes here.

goto chapter_end

label chapter_end

#ending credits go here