how to make a command onlu for admins discord.py code example
Example 1: discord.py make command admin only
# Make sure you don't have a command called "commands"
@client.command() # As usual
@commands.has_permissions(administrator=True) # Making sure the person executing the command has the permissions
async def foo(ctx):
await ctx.send("Hello")
#ect
Example 2: how to let only admins do a command in discord.py
@commands.has_permissions(administrator=True)
@client.command()
async def admins_only_command(ctx, *, args):
# ur code