Bot not coming online

My bot does not come online when i run this code
const { Client, GatewayIntentBits } = require('discord.js');
require('dotenv/config');

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

client.on('ready', () =>{
    console.log('The Bot is On!')
});


client.login(process.env.TOKEN);


There is no error, nothing in the terminal. It just looks lik this. (I have imported dotenv and have a file named .env with the token inside a variable called TOKEN, i dont think thats the issue.)

I sent an image what the terminal looks like. Any help appreciated. PLS
image.png
Was this page helpful?