const { Client, GatewayIntentBits } = require('discord.js');const client = new Client({ intents: [GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMembers, GatewayIntentBits.MessageContent],});client.login('removed the token for security');client.on('ready', () => { console.log('Ecstasy is online');});client.on('messageCreate', (message) => { if (message.content === 'hello') { message.reply('hello'); }});