If someone says hey in chat I want the bot to dm them, but it gives absolutely no errors an doesnt work either
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.lower == "hey":
await message.author.send("heyo")
await message.add_reaction(":b:")
await client.process_commands(message)