Skip to content

$disconnect

$disconnect will make your bot leave from the voice channel.

Usage

$disconnect[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?snowflakeguild IDfalse

Example(s)

This will make your bot leave from the voice channel

1
client.command({
2
name: "disconnect",
3
code: `
4
$disconnect
5
`
6
});