discord.py Selfbot can’t get guild users

https://github.com/Rapptz/discord.py/issues/5782#issuecomment-707908993 Look at it. You have to enable intents for your bot, especially the server members intent (from the discord dev portal). Then, in your code, do this: intents = discord.Intents.default() intents.members = True client = discord.Client(intents = intents, **kwargs) # OR COMMANDS.BOT I’m not sure that this will work, but give it a try. … Read more