This is a very exciting plot and I think y'all need to calm down with the complaints.
I'm self taught on Ren Py and very much still learning, so pinch of salt here. Thinking of solutions to jump to new content what about putting in a menu choice at the start? I begin after entering character names.
View attachment 3528142
This gets the characters the correct name and skips ahead.
I tested this script on my PC and it works. I only have the one computer so I wasn't able to do a mass beta testing.
the forum removes the spacing so replace (tab) with the Tab key.
"To my right is my sister, her name is..."
$ sisname = renpy.input("What is my Sister's name?{p}(Penelope by Default.)")
$ sisname = sisname.strip()
if sisname == "":
(tab)$ sisname="Penelope"
menu choiceX:
(tab)"Go to the kitchen."
(tab)(tab)pass
(tab)"Go to new content":
(tab)(tab)jump continue_script_7