Бот выводит текст от своего имени в чат, и удаляет моё сообщение
import discord
from discord.ext import commands
TOKEN = 'токен'
bot = commands.Bot(command_prefix='!')
@bot.command(pass_context=True)
async def say(ctx, *arg):
await ctx.send(' '.join(arg))
bot.run(TOKEN)