const Discord = require('discord.js') client.on('message', message => { const suggestonsChannel = message.guld.channels.cache.get('put channel id here') if (message.channel === suggestionsChannel) { if (message.author.bot) return message.delete({ timeout: 1000 }) const Embed = new Discord.MessageEmbed() .setAuthor(message.author.tag, message.author.displayAvatarURL()) .setDescription(`${message.content}\n\nšŸ“Š Use the reactions below to vote!`) .setFooter('Want to suggest something? Type it here!') .setColor(3426654) message.channel.send(Embed).then(message => { message.react('šŸ‘') .then(() => message.react('šŸ‘Ž')) }) } })