Connection Timeout Error

hey guys im really new to all this, im trying to set up a bot and i cant figure out why im getting this connection timeout error

Discordjs 14.13.0
Nodejs 16.20.2

I pretty much followed everything from the site
import { Client, Events, GatewayIntentBits } from 'discord.js';

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

client.once(Events.ClientReady, c => {
    console.log(`Ready! Logged in as ${c.user.tag}`);
});


client.login('token');


Firewall is disabled, I have network connection, ive also tried reinstalling everything and reseting my token but same thing
38886b3dc2699159983d43bea20a0a6b.png
Was this page helpful?