> For the complete documentation index, see [llms.txt](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/scripts-free/dj-fun/english/configuration/playlist.md).

# Playlist

**Playlist Management**\
Add multiple songs to `Config.Playlist`

***

**1. Identify the index to increment**\
Each entry uses a number: 0, 1, 2, etc\
These numbers must follow each other without skipping

***

**2. Add a title**

```lua
['Titre0'] = 'Turn It Up',
```

This is the name of the artist or band

***

**3. Add a description**

```lua
['Description0'] = 'Turn It Up · Gonzi',
```

This serves as the title or name of the song

***

**4. Add the URL link**

```lua
['Musique0'] = 'https://www.youtube.com/watch?v=YcL6DsBw2yM',
```

You can use YouTube links.

***

**5. Repeat for each new song**\
Increment the numbers (1, 2, 3, etc.) for each new line:

```lua
Config.Playlist = {
    ['Titre0'] = 'Turn It Up',
    ['Description0'] = 'Turn It Up · Gonzi',
    ['Musique0'] = 'https://www.youtube.com/watch?v=YcL6DsBw2yM',

    ['Titre1'] = 'Daft Punk',
    ['Description1'] = 'One More Time',
    ['Musique1'] = 'https://www.youtube.com/watch?v=FGBhQbmPwH8',

    ['Titre2'] = 'Martin Garrix',
    ['Description2'] = 'Animals',
    ['Musique2'] = 'https://www.youtube.com/watch?v=gCYcHz2k5x0'
}
```

***

**6. Temporarily Disable a Song**\
You can comment out lines using `--[[ ]]`:

```lua
--[[
['Titre3'] = 'Example',
['Description3'] = 'Example Song',
['Musique3'] = 'https://link.youtube',
]]
```
