Untitled

Anonymous
python
05/08/2023 9:57 AM
384 B
28
Indexable
import discord
from discord.ext import commands

bot = commands.Bot(command_prefix="!", intents=discord.Intents.all())

@bot.event
async def on_ready():
    print("Logged in as {bot.user}")

@bot.command()
async def hello(ctx):
    await ctx.send("Hello")

bot.run('TOKEN')
Editor is loading...