I need help for this i can't fix it

someone can solve it?

client = discord.Client(discord.Intents.defaults())? I don’t know, try searching about discord intents on google

2 Likes

^^ Yes, with the new discord.py update you have to include intents when initing the bot:

import discord

bot = commands.Bot(
	intents=discord.Intents.all(),
	command_prefix="!"
)

I would recommend to go with slash commands instead because they’re versatile, integrated, and when your bot grows to need verification, the only option

1 Like