breezy-solstice-69394
12/15/2022, 8:20 PMbusy-arm-75131
12/15/2022, 8:38 PMbusy-arm-75131
12/15/2022, 8:38 PMbusy-arm-75131
12/15/2022, 8:39 PMmillions-knife-57333
12/15/2022, 8:39 PMgentle-london-6993
12/15/2022, 8:40 PMgentle-london-6993
12/15/2022, 8:40 PMbusy-arm-75131
12/15/2022, 8:40 PMbusy-arm-75131
12/15/2022, 8:41 PMbusy-arm-75131
12/15/2022, 8:41 PMbusy-arm-75131
12/15/2022, 8:42 PMgentle-london-6993
12/15/2022, 8:42 PMbusy-arm-75131
12/15/2022, 8:42 PMbusy-arm-75131
12/15/2022, 8:42 PMbusy-arm-75131
12/15/2022, 8:42 PMbreezy-solstice-69394
12/15/2022, 8:42 PMgentle-london-6993
12/15/2022, 8:43 PMconst { MessageEmbed } = require('discord.js');
module.exports = {
name: 'kick',
category: 'moderation',
run: async (client, message, args) => {
if (!message.member.hasPermission('KICK_MEMBERS')) {
return message.channel.send('You are unable to kick members');
}
if (!args[0]) {
return message.channel.send('Please mention a user!');
}
const member = message.mentions.members.first() || message.guild.members.cache.get(args[0]);
try {
await member.kick();
return message.channel.send(`${member} has been kicked!`);
} catch (e) {
return message.channel.send('User isn\'t in this server!');
}
},
};
busy-arm-75131
12/15/2022, 8:43 PMbusy-arm-75131
12/15/2022, 8:43 PMbusy-arm-75131
12/15/2022, 8:43 PMgentle-london-6993
12/15/2022, 8:44 PMbusy-arm-75131
12/15/2022, 8:44 PMbusy-arm-75131
12/15/2022, 8:44 PMbusy-arm-75131
12/15/2022, 8:44 PMbusy-arm-75131
12/15/2022, 8:44 PMgentle-london-6993
12/15/2022, 8:44 PMbusy-arm-75131
12/15/2022, 8:44 PMbusy-arm-75131
12/15/2022, 8:44 PM