Skip to content

$autoPlay

$autoPlay will autoplay songs

Usage

$autoPlay[enable?;type?]

Parameters

FieldTypeDescriptionRequired
enable?booleantrue to enable, false to disablefalse
type?stringSource type: youtube, soundcloud, applemusic, deezer, spotify, etc.false

Example(s)

This will automatically add songs to your queue

1
client.command({
2
name: "autoplay",
3
code: `
4
$autoplay // return true
5
6
autoplay enabled!
7
$autoPlay[true;youtube]
8
`
9
});