I'm making a server info command and i want it to say how many humans and bots are in the server, here's the part of the embed that should do that:
{ name: 'Human members: ', value: message.guild.members.cache.filter(member => !member.user.bot).size, inline: true},
{ name: 'Bots members: ', value: message.guild.members.cache.filter(member => member.user.bot).size, inline: true},
I'm trying the command in a server with like 50 humans and 10 bots, i hope you can help