I'm coding in Python and started coding recently. I created super simple clockwork mini machine in Python:
if message.content.startswith("Clock"):
await message.channel.send("3")
time.sleep(1)
await message.channel.send("2")
time.sleep(1)
await message.channel.send("1")
But now I want to make the bot delete previous message automatically, so it would look like single message turning into 3, 2, 1
Sincere thanks,
Aaron