How do I make a live group member count?

You can write your topic however you want, but you need to answer these questions:
I want a GUI that shows the live update of my groups members count

I have looked everywhere but everything I find is broken

I would love for you to help me.

5 Likes

Here is a great example that already includes a proxy:

3 Likes

I have already looked at that post and it doesnt work :expressionless:

1 Like

That is the only way to achieve group member info at the moment. What causes it to not work?

2 Likes

It says [HTTP 429 (Too Many Requests)

1 Like

This probably means that that proxy is over used. In this case, I would recommend setting up a basic one using Google Apps Script.
Here is a post specifically on this:

You could use the same endpoint, but just use a Google Apps Script web app instead of that random proxy.

4 Likes

I will try this thank you :smiley:

2 Likes

I am not good with JS could you link me a tutorial?

1 Like

Just copy and paste the script from the tutorial I sent. NexusAvenger shows you exactly how to set it up. Then you can request info from any API without restrictions.

2 Likes

Ok all of that works thank you but could you give me the API link to get the member count?

Coming right up!
https://groups.roblox.com/v1/groups/GroupId

To get the member count, I believe you can do this:

GroupId = 184949932276
Members = game.HttpService:JSONEncode(HttpProxy:GetAsync("https://groups.roblox.com/v1/groups/" .. tostring(GroupId))).memberCount
8 Likes

I got it thank you game.HttpService:JSONEncode(HttpProxy:GetAsync(“https://groups.roblox.com/v1/groups/1”).memberCount)

1 Like

How can I include the api in a website instead?