I want my Discord Bot to display the Number of Online Users of a Role as an Activity.
I can\'t seem to figure it out and i can\'t find anything on the Web.
Can someone g
You can use Guild.members.forEach() to loop through every member of the guild, then if they have that role (you can use GuildMember.roles.has(Role.id) to check that) increase a counter. When you have finished your loop through the members, use the counter in your Client.user.setActivity().
That is what you need in order to get what you want.
Try this stuff, if you still have problems post a MCVE and we'll help you, but first you need to try yourself.