You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constDiscord=require('discord.js');constclient=newDiscord.Client({intents: [Discord.Intents.FLAGS.GUILDS,Discord.Intents.FLAGS.GUILD_MESSAGES]});client.on('ready',()=>{// Create an invite to a channelchannel=client.guilds.cache.get("enter your guilds id").channels.cache.get("enter your channels id");channel.createInvite().then(invite=>console.log(`Created an invite with a code of ${invite.code}`)).catch(console.error);})client.login('your Discord bot token');