Skip to content

$disconnect

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

Usage

$disconnect[guildID?]

Parameters

Field Type Description Required
guildID? snowflake guild ID false

Example(s)

This will make your bot leave from the voice channel

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