@bot.command(pass_context=True)
@commands.has_role("Admin")
async def check(ctx, user: discord.Member):
role = discord.utils.find(lambda r: r.name == 'название_роли', ctx.message.server.roles)
if role in user.roles:
await bot.say("у вас есть роль")
else:
await bot.say("у вас нету роли")