move user to vc code example
Example 1: move user to vc
// Change "client" with your variable
client.on("message", message => {
if (message.author.bot) return;
if (message.content.toLowerCase() === "move") {
async function Move() {
message.guild.member("USER-ID").voice.setChannel("VOICE-CAHNNEL-ID");
}
Move()
}
})
// When Said "Move" moves user to different Voice Channel.
Example 2: move user to vc
message.guild.member("USER-ID").voice.setChannel("VOICE-CAHNNEL-ID");