Replymessage unavailable
import asyncio
from aiogram import Bot, Dispatcher
bot = Bot(token=" put your token here ")
dp = Dispatcher()
async def main():
# Pass the bot instance here instead
await dp.start_polling(bot)
if name == "main":
asyncio.run(main())
Maybe this would help