> For the complete documentation index, see [llms.txt](https://doc.var-fivem.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.var-fivem.com/emote/configuration/playlist.md).

# Playlist

Chain multiple emotes into a sequence that plays automatically.

***

### Commands

```
/playlist [name]     Play a saved playlist
/playlist stop       Stop the current playlist
/playlist pause      Pause / resume playback
```

***

### Creating playlists

Playlists are created and managed through the emote menu's **Playlists** tab. You can:

* Add emotes to a playlist with custom timing
* Save, rename and delete playlists
* Playlists are saved per client using KVP (persistent across sessions)

***

### Limits

| Setting          | Default | Description                    |
| ---------------- | ------- | ------------------------------ |
| `MaxPerPlaylist` | 20      | Max emotes per playlist        |
| `MaxPlaylists`   | 10      | Max saved playlists per player |

***

### Config

```lua
Config.Playlist = {
    Enabled = true,
    MaxPerPlaylist = 20,
    MaxPlaylists = 10,
}
```
