guild.members.foreach is not a function code example
Example: TypeError: client.guilds.forEach is not a function
// This is for Discord Bots
// Version 12 Syntax is different than the v11
client.guilds.cache.forEach((guild) => {
console.log(guild.name);
});