get guild members count discord bot code example
Example 1: discord.py get guild member list
guild = client.get_guild(ID)
memberList = guild.members
Example 2: Bots member count discord js
<client>.guilds.cache.reduce((a, g) => a + g.memberCount, 0)
// The client is the bot itself.
// You would have defined this at the top of your index.js/app.js
// It would look like 'const client = new Discord.Client()'
// Put that in place for '<client>' and remove the <>