e
async def startshit(id, text):
x = 0
while x > 3:
await message.bot.send_message(chat_id=id, text)
x += 1
time.sleep( 2 )
startshit(chat_id, text)
async def startshit(id, text):
for _ in (range(3):
await message.bot.send_message(chat_id=id, text=text)
asyncio.sleep( 2 )
await startshit(chat_id, text)