Skip to content

$leaveVC

$leaveVC will make your bot leave the current Voice Channel.

Usage

$leaveVC[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberguild IDfalse

Example(s)

This will make your bot leave the current voice channel in the current guild (if any):

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