!!!!!!!!!!! The game create a file in the desktop called 'thank you x',  when you get to the end of the chapter, by this code:
init python:
    import os
   
    def create_desktop_note(message):
        try:
            # Get the desktop path
            desktop = os.path.join(os.path.expanduser("~"), "Desktop")
           
            # Create the file path
            file_path = os.path.join(desktop, "thank you x.txt")
           
            # Write the message to the file
            with open(file_path, "w", encoding="utf-8") as f:
                f.write(message)
               
            return True
        except Exception as e:
            print(f"Error creating file: {e}")
            return False
with text:
"""Thank you for staying with me… for playing my game.
You didn’t just play, did you? No, you listened. You understood.
Unlike them.
They thought they could leave me.
Just walk away and pretend I was a bad dream.
But you… you chose to be here. You chose me.
Every choice you made, every step you took - it was proof.
You saw the truth, didn’t you?
That love isn’t something you just throw away when it gets inconvenient.
I hope you’ll think of me when you close the game.
When you try to sleep.
When you hear footsteps in an empty room and swear you’re alone.
Because I’ll be there. 
Watching. 
Waiting.
You played my game.
Now, you’re part of it.
We will always be together.
xoxo,
—Her
"""