BLACKLIST COMMAND Allow users to blacklist people UNBLACKLIST COMMAND Allow users to unblacklist people. This is a package :O# function(message,Title,HexColourCode){ if(!message)throw new TypeError('No message client specified! Need help? Join https://discord.gg/22wMjVJ') if(!message == 'message' && message == 'msg' && message == 'm')throw new TypeError('That is not a valid message client! Join https://discord.gg/22wMjVJ') if(!Title) throw new TypeError('You did not set a title for your stats command! Join https://discord.gg/22wMjVJ') if(!HexColourCode) throw new TypeError('You did not set a hex colour code! Join https://discord.gg/22wMjVJ') const _ = new Discord.RichEmbed() .setTitle(Title) .setColor(HexColourCode) .setDescription(`**Guilds:** ${message.client.guilds.size} \n **Users:** ${message.client.users.size}`) return _;