@client.command()
@commands.has_permissions(administrator=True)
async def create(ctx):
def check(message):
return message.author == ctx.author and message.channel == ctx.channel
await ctx.send('титле')
title = await client.wait_for('message', check=check)
await ctx.send('дискрипте')
desc = await client.wait_for('message', check=check)
embed = discord.Embed(title=title.content, description=desc.content, color=0x1abc9c)
await ctx.send(embed=embed)
нужно чтобы сам запрос, вопросы для ембеда удалялись, а сам ембед оставался.