I'm having a problem with a say command, and it is that i can't send a well formated text.
I wanted to make it look like this:
Here is the code:
#COMMAND say
@commands.command()
@commands.has_any_role(*Say_Role)
async def say(self, ctx, *message):
await ctx.message.delete()
channel = ctx.channel
await ctx.send(f"✅", delete_after=0.1)
await channel.send(message)
What I need to do in order to make it look like the first image?