I've been trying to get the intents to work on my bot for a while now and have clicked through the guide but still the intents don't work no matter what I type from the guide.
Code:
// Discord.js import
const {Client, GatewayIntentBits, Events, IntentsBitField} = require('discord.js');
// require database connection
const db = require('./services/sql');
// Discord.js client
const client = new Client({
intents: [
IntentsBitField.FLAGS.GUILDS
]
});