I have the following code that I am trying out:
@bot.event
async def on_member_join(member):
print("works")
for channel in member.guild.text_cha
discord.py
1.5.0 now supports discord API's Privileged Gateway Intents. In order to be able to exploit server data, you need to:
Presence Intent
and Server Members Intent
in your discord application:intents = Intents.all()
#If you use commands.Bot()
bot = commands.Bot(command_prefix="!", intents=intents)
#If you use discord.Client()
client = discord.Client(intents=intents)