> For the complete documentation index, see [llms.txt](https://scripting.breeze.rip/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://scripting.breeze.rip/getting_started.md).

# Getting Started

#### Creating the script file.

To start you have to create a javascript file inside of the breeze scripting folder. You can find this folder in two ways:

* Pressing the <i class="fa-folder">:folder:</i> icon inside of the breeze scripting tab.\
  ![](/files/ZaTIooPMcud6YtbYQho4)
* Or manually manouver to the appdata folder, the same folder where [`.minecraft`](https://stickypiston.co/account/knowledgebase/130/How-do-I-find-my-Minecraft-Folder.html) is. In the folder navigate the following path to find the breeze scripting folder -> `breeze/1.8.9/scripts`

In the `scripts` directory create a file with the name of your script ending with `.js`.

{% hint style="success" %}
The script name that shows up inside of breeze is defined by what you name the file! For example calling your file `PingSpoof.js` will make the script show up as **PingSpoof**.\\

<img src="/files/I80yVbgg0irDCsnmIV0S" alt="" data-size="original">
{% endhint %}

#### Script Description

To start your script we can use the [script](/api/namespaces/script.md) to set the description for the script.

```javascript
script.description = "Test description for this script";
```
