Events.MessageCreate does not invoke

const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent] });

client.on(Events.MessageCreate, message => {
  if (message.author.bot) return;
  console.log(`Message received: ${message.content}`);
});

Nothing is logged.
Was this page helpful?