#!/bin/env python import discord from discord.ext import commands intents = discord.Intents.all() bot = commands.Bot(command_prefix='$', intents=intents) guild_ids = [945266609579245618] testing = bot.create_group(name="testing", description="testing", guild_ids=guild_ids) @bot.event async def on_ready(): print("The bot has connected to the client!") @testing.command(name="hoi", description="hoi command") async def hoi(ctx, member: discord.Member): await ctx.respond(f"hoi {member}") bot.run('TOKEN')