Files
discord-bot/commands/join.js
T
2020-04-29 05:46:01 +01:00

8 lines
261 B
JavaScript

module.exports = {
name: 'join',
description: 'joins a voice channel',
execute: async (message, voiceChannel, args) => {
connection = await voiceChannel.join();
connection.play('https://www.youtube.com/watch?v=Hl1s4BT9Fc4');
}
};