Skip to content
Advertisement

How do I show what emojis are in the server

So I was working on a discord.js server info command. So I had an idea, of showing the emojis that are in a server, though I don’t know how to do that. I do know how to get the amount of emojis, but I’m not sure how to get the emojis.

Advertisement

Answer

const emoji = message.guild.emojis.cache.array();
message.channel.send(emoji);
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement