$destroyPlayer
$destroyPlayer
will make your bot leave from the
voice channel.
Usage
$destroyPlayer[guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | snowflake | guild ID | false |
Example(s)
This will make your bot leave from the voice channel
1client.command({2 name: 'destroy',3 code: `4 $destroyPlayer5 `6});
This will make your bot leave from the voice channel
1module.exports = [{2 name: "destroy",3 code: `4 $destroyPlayer5 `6}]