In the given code below I was trying to give a role to the person who reacts to a message by using any emoji but this code throws me an error saying that 'Member' has no attribute 'server'
what should I do now?
JavaScript
x
26
26
1
import discord
2
from discord.ext import commands
3
import random
4
5
client = discord.Client()
6
7
8
9
10
11
@client.event
12
async def on_ready():
13
print('ready')
14
15
@client.event
16
async def on_reaction_add(reaction, user):
17
channel = reaction.message.channel
18
19
await channel.send(f'{user.name} has reacted by using {reaction.emoji} emoji, his message was {reaction.message.content}')
20
21
role = discord.utils.get(user.server.roles, name = 'Bot')
22
23
await client.add_roles(user, role)
24
25
client.run('TOKEN')
26
Advertisement
Answer
First off take a look at the documentation. It’ll tell you everything you need to know about what has what attributes. Also, server is called guild in discord.py. So use user.guild.roles
instead.