# Music

Setting up music for your zones is as easy as setting the Config option to `true`

```lua
Config.UseZoneMusic = true
```

Next Find a dope link from YouTube that you would like playing while in the Zones

{% code lineNumbers="true" %}

```lua
Config.MusicInfo = {
    [1] ={
        name = 'safezone1',
        link = 'https://www.youtube.com/watch?v=YUoHI2gDf7k',
        volume = 0.4,
        coords = vector3(696.2985, 130.9088, 83.8779),
        distance = 75
    },
    --[[[2] ={
        name = 'safezone2',
        link = 'https://www.youtube.com/watch?v=d_uqlELD4qw',
        volume = 0.3,
        coords = vector3(1699.2564, 3771.0712, 34.524211),
        distance = 37
    },]]
}
```

{% endcode %}

Add more zones by just copying the table and changing variables.&#x20;


---

# 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://docs.sickscripts.com/sicksafezones/music.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.
