Skip to content

$joinVC

$joinVC will make your bot join a specified voice channel.

Usage

$joinVC[voiceID?]

Parameters

FieldTypeDescriptionRequired
voiceID?snowflakeVoice channel IDfalse

You require intents: ["GuildVoiceStates"] in your main file.

Example(s)

This will make your bot join a specified voice channel

1
client.command({
2
name: "join",
3
code: `
4
joined!
5
$joinVC[$voiceID]
6
`
7
});