Skip to content

Instantly share code, notes, and snippets.

View 9de's full-sized avatar
🎯
Focusing

Turki 9de

🎯
Focusing
  • Riyadh, Saudi Arabia
View GitHub Profile
require('dotenv').config();
const { Client, GatewayIntentBits } = require('discord.js');
const GUILD_ID = "GUILD_ID";
const BAN_REASON = "Automated unban!";
const DISCORD_TOKEN = process.env.DISCORD_TOKEN;
const client = new Client({
intents: [GatewayIntentBits.GuildBans, GatewayIntentBits.Guilds],
});