on member join not working

Solutions on MaxInterview for on member join not working by the best coders in the world

showing results for - "on member join not working"
Clément
08 Feb 2020
1intents = discord.Intents.default()
2intents.members = True
3
4bot = discord.Client(intents=intents)
Nicholas
21 Apr 2017
1import discord
2
3intents = discord.Intents.default()
4intents.members = True
5
6from discord.ext import commands
7
8bot = commands.Bot(command_prefix='!', intents=intents)