Answer the question
In order to leave comments, you need to log in
How to transfer a user from one voice channel to another?
Hello! I wanted to write private voice chats in Discord. Faced a problem.
(node:12956) UnhandledPromiseRejectionWarning: TypeError: New.setVoiceChannel is not a function
var categoryID = '732115887246671915';
var voiceID = '732115887246671917';
bot.on('voiceStateUpdate',(Old,New)=>{
if(New.channelID == voiceID){
New.guild.channels.create(`⭐Room `, { type: 'voice'}).then(set => {
set.setParent(New.guild.channels.cache.get(categoryID));
New.setVoiceChannel(New.guild.channels.cache.get(set.id))
});
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question