Python:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix="!")
bot.remove_command('help')
@bot.command(name="ping")
async def ping(ctx):
await ctx.send('Why u f*cking pinging me :peepoping:?')
bot.run('token')