Any time I try to use VoiceChannel.members or Guild.members it does not give me a full list of applicable members. I\'m grabbing both the VoiceChannel and the Guild from the
As of October 7th, Discord has changed their API to require bots to declare gateway intents. Make sure your discord.py is updated to at least version 1.5 and enable the members intent:
import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.members = True
bot = commands.Bot(command_prefix='!', intents=intents)