# Step 4: Make Your First Visual Novel

Ok, now you have some idea on [what the files you got are for](/documentation/develop/getting-started/step-3-get-familiarized.md) so how can you start developing your game?

1. Try the game first, open the index.html file inside the directory you just unzipped and play the sample game through.
2. Once you've played it once, open the directory (the one you unzipped) with the editor you chose to start making changes.
3. Open the `script.js` file with your editor and find the `script` section, as you'll see, all the dialogs you just saw are just a simple list in there. More information can be found in [the documentation](/documentation/develop/building-blocks/script-and-labels.md).
4. Change one of the dialogs, save the file and reload the game (just like you reload a website).
5. Play it again and you'll see the dialog changed just like you made it.&#x20;
6. Now try adding more dialog to it and you'll quickly get how things are done.
7. Once you've gotten yourself used to adding dialogs, [add a scene](/documentation/develop/script-actions/show-scene.md) as a challenge, that means you'll have to add your image file to the `assets/scenes/` directory, more instructions are on the link.

If you manage to do all that, congratulations! You just made your first game and are probably more familiarized with the workflow you'll be using, just make changes, save, reload, try and repeat!


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.monogatari.io/documentation/develop/getting-started/step-4-make-your-first-visual-novel.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
