# 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.\
  ![](https://3854170834-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiOeZYpMqko1q0SgE11To%2Fuploads%2Fgit-blob-060dba2f11ca9918eccc5e204de5c22e16a926ae%2Fimage.png?alt=media)
* 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="https://3854170834-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiOeZYpMqko1q0SgE11To%2Fuploads%2Fgit-blob-b15ef44fcd4bee85e034a9e88775d57993e70e5e%2Fimage%20(3).png?alt=media" alt="" data-size="original">
{% endhint %}

#### Script Description

To start your script we can use the [script](https://scripting.breeze.rip/api/namespaces/script "mention") to set the description for the script.

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