Das ist mein Code:

import discord

intents = discord.Intents.all()
client = discord.Client(intents=intents)


@client.event
async def on_ready():
    print('bot is ready') # Prints when started up


@client.event
async def on_message(message): # Two commands that should show an embed
    await client.process_commands(message)
    if message.content.startswith(",feedback"):
        role = discord.utils.get(message.guild.roles, id=1060954421980319834)
        if role in message.author.roles:
            embed = discord.Embed(title="Feedback",description="Please fill in this feedback form. [ Optional ]\n\n```How good was the customer service?\nHow fast did you get your product?\nHow good did the product work?\nDo you want to give the staff a tip?```",color=1226812)
            embed.set_footer(text="Tips go 100% to the assisting staff")
            embed.set_thumbnail(
                url="https://cdn.discordapp.com/attachments/1060992798880448553/1060992810947453019/image.png")
            embed.set_author(name="ProBoosts")
            await message.channel.send(embed=embed)
            await message.delete()
        else:
            await message.channel.send("`You don't have the permissions to use this command`")
    elif message.content.startswith(",staffping"):
        role = discord.utils.get(message.guild.roles, id=1060954421980319834)
        if role in message.author.roles:
            embed = discord.Embed(title="Staff-Ping",description="Do NOT ping Staff. It may result a warning/mute. And it could delay staff seeing the ticket.", color=16530981)
            embed.set_footer(text="ProBoosts")
            embed.set_thumbnail(
                url="https://cdn.discordapp.com/attachments/1060992798880448553/1060992810947453019/image.png")
            await message.channel.send(embed=embed)
            await message.delete()
        else:
            await message.channel.send("`You don't have the permissions to use this command`")

Eigentlich sollte dort ein Embed kommen im Channel wo der Command ausgeführt wurde. Es kommt aber nix. Rein garnix. Der Bot wird übrigens ausgeführt ich habe die "client.run" Funktion aber ausgelassen damit mein Token nicht iwie geleaked wird.