# 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,
}
```
