1@client.event
2async def on_reaction_add(reaction, user):
3 # Steals your reaction by removing the original and adding it's own
4 if not user.bot and reaction.message.content == "try me":
5 await reaction.remove(user)
6 await reaction.message.add_reaction(reaction.emoji)