intento crear un bot en discord aquí está mi código
pero cuando lo ejecuto no responde en el servidor de discordia
const Discord = require("discord.js")
const TOKEN="my_token_here" const client = new Discord.Client({ intents:[ "GUILDS", "GUILD_MESSAGES" ] }) client.on("ready", ()=> { console.log(`Loggin in as ${client.user.tag}`) }) client.on("message", async msg => { if (msg.content === "hi"){ await msg.reply("Hello welcome User !") } }) client.login(TOKEN)**