$leaveVC
$leaveVC will make your bot leave the current Voice Channel.
Usage
$leaveVC[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | guild ID | false |
Example(s)
This will make your bot leave the current voice channel in the current guild (if any):
1client.command({2 name: "leaveVC",3 code: `4 $leaveVC[$guildID]5 `6});