如何在禁止该机器人所在的所有服务器中的用户的位置添加命令?

我正在尝试使用discord.js发出命令,该命令将在多个服务器上执行命令。 这是我到目前为止所做的。

if (isCommand('globalban', message)) {
if(!member.roles.cache.some(role => role.name === 'Staff')) 
   return message.reply("You can't use this command.");
var targetID = args[1]; // this is the targets UserID

if (!targetID)
   return message.channel.send("Please provide the targets ID");
//rest of code goes here. 


return;
}

我不确定该如何继续。