Answers for "check if bot has permission discord.js"

-1

check if bot has permission discord.js

//Check if my bot has permission ADMINISTRATOR
const guild = Client.guild.cache.get("GUILD_ID");
if(guild.me.hasPermission("ADMINISTRATOR")) {
	console.log("I have the Permission Administrator");
}else {
	console.log("I don't have Permission Administrator");
}
Posted by: Guest on April-17-2021

Code answers related to "check if bot has permission discord.js"

Browse Popular Code Answers by Language