Added robotics command

imgbot
kieranrobson 2022-05-13 19:50:03 +01:00
parent 5d4b1180a9
commit af0b5d4142
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
const discord = require("discord.js");
module.exports = {
name: "robotics",
aliases: ['robsoc'],
/**
*
* @param {Client} client
* @param {Message} message
* @param {String[]} args
*/
run: async (client, message, args) => {
const embed = new discord.MessageEmbed()
.setTitle("Robotics Society")
.setColor('BLUE')
.setFooter(`Called By: ${message.author.tag}`)
.setDescription('Robotics Society aee a society where you can gain skills in building an actual robot, or get help with your assignments or exams, but they also run social night where they go out to do stuff.')
.addField('You can join them from below!','https://discord.gg/cMP5CavnK4')
message.channel.send({ embeds: [embed] });
}
}