Kick Command Is Giving Errors
My kick command is below: @bot.command() async def kick(ctx, member: discord.Member, *,reason=None): d = datetime.datetime.now() channel = bot.get_channel(5560589
Solution 1:
Your bot does not have the permissions necessary to kick the member in question. Make sure your bot has the KICK_MEMBERS
permission and that your bot can interact with the member (your bot's highest role is above their highest role and the member is not the owner of the guild).
Post a Comment for "Kick Command Is Giving Errors"