Getting Error When Using Custom Emojis In Discord.py
import discord
from discord.ext import commands
client = commands.Bot(intents=intents,command_prefix="$")
@client.event
async def on_message(msg):
if msg.author == client.user:
return
else:
await msg.channel.send("<:doory_fruit:1062084428228206657>")
client.run("MyToken")
error 1 when not inputting the id: Image Link
error 2 when using name and id : Image 2 Link
Any Help