// NOTE: This wont work without a proper index and command handler! If you're interested in implementing this code, I'd suggest watching WornOffKeys's tutorials on getting started and a basic command handler! command(client, 'present', async message => { const Embed = new Discord.MessageEmbed() .setTitle('Click here to open the present!!') .setImage('https://i.imgur.com/jOLJmgw.jpg') .setURL('https://www.youtube.com/watch?v=dQw4w9WgXcQ') .setAuthor('Bot created by Bqre#0001', 'https://i.imgur.com/trvzFSz.png') .setColor(3426654) message.channel.send(Embed) })