i try creating a bot on discord here is my code
but when i run it is not responding on the discord server
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)**