admin = # id роли
moder = # id роли
# для 2-ух ролей:
@bot.command()
@commands.has_any_role(admin or moder)
async def test(ctx):
await ctx.send("Hello!")
# для 1-ой роли:
@bot.command()
@commands.has_role(admin)
async def test(ctx):
await ctx.send("Hello!")