попробуй так, я в чате админ, проверить не могу на не админе:
@dp.message_handler(commands=['бан', 'кик', 'мут', 'анмут', 'анбан'])
async def not_admin(message: Message):
if await AdminFilter().check(message):
await message.answer(
text='Успешно выполнено',
disable_notification=True
)
return
await message.answer(text='Ты не админ')