I am trying to move the tagged user into the voice channel using the channel ID. I saw someone use .setUserChannel but it tells me that it isn't a function. Can someone tell me what I need to fix please :)
if(command === 'ping'){
message.channel.send('pong');
} else if (command === 'abuse'){
//const AbuseTown = client.channel.cache.get(760535995329282161);
const taggedUser = message.mentions.users.first();
message.channel.send(`You want to abuse: ${taggedUser.username}`);
taggedUser.setVoiceChannel('776202269569712168');
return;
}