1intents = discord.Intents.default()
2intents.members = True
3client = commands.Bot(command_prefix=',', intents=intents)
4
5@client.event
6async def on_member_join(member):
7 role = get(member.guild.roles, id=role_id)
8 await member.add_roles(role)
9