intents = discord.Intents.default()
intents.members = True
client = commands.Bot(command_prefix=',', intents=intents)
@client.event
async def on_member_join(member):
role = get(member.guild.roles, id=role_id)
await member.add_roles(role)
member = message.author
var = discord.utils.get(message.guild.roles, name = "role name")
member.add_role(var)
from discord.ext import commands
from discord.utils import get
bot = commands.Bot(command_prefix='!')
@bot.command(pass_context=True)
@commands.has_role("Admin") # This must be exactly the name of the appropriate role
async def addrole(ctx):
member = ctx.message.author
role = get(member.server.roles, name="Test")
await bot.add_roles(member, role)
@client.event
async def on_member_join(ctx):
await person.add_roles(person.guild.get_role(<role_id>))