Reading message reactions discord.js

async run(message, args) {
const data = require('../../tickets.json')
const Discord = require('discord.js')
const fs = require('fs')
    const tickEmbed = new Discord.RichEmbed()
      .setTitle("Click The Checkmark Below To Open A New Ticket")
    message.channel.send(tickEmbed)
		.then(function (message) {
      message.react("✅")
			});
    client.on('messageReactionAdd', (messageReaction, user) => {
      const { message, emoji } = messageReaction;
        if(emoji.name === "✅") {
          message.channel.send("works")
          }
    });
 }

When I react to the message with the checkmark nothing happens…

Try changing that to new Discord.MessageEmbed) and tell me what happens :slight_smile:

Take a look at https://discordjs.guide/popular-topics/reactions.html#awaiting-reactions - It might help you find any errors