Хорошо, я понял, что это работает для вас.Не стесняйтесь менять его по своему вкусу.
@bot.command(ignore_extra=False)
async def sendd(ctx, channel, *message):
color = discord.Color.from_rgb(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
channel = channel.replace('<#', '')
channel = int(channel.replace('>', ''))
channe = bot.get_channel(channel)
message = (" ".join(message[0:]))
embed = discord.Embed(title="Sendd", description=f"{message}", color=color)
await channe.send(embed=embed)
Конечно, вы должны объявить бота как «бота», иначе он не будет работать.Это сработало для меня, хотя.