HaiderImtiaz

Results 3 comments of HaiderImtiaz

SOLVED.... i had solved it in Python: import discord from discord.ext import commands intents = discord.Intents.default() intents.message_content = True # Enable message content intent bot = commands.Bot(command_prefix='!', intents=intents) BASICALLY we...