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.
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.
Here is a great example that already includes a proxy:
I have already looked at that post and it doesnt work
That is the only way to achieve group member info at the moment. What causes it to not work?
It says [HTTP 429 (Too Many Requests)
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.
I will try this thank you
I am not good with JS could you link me a tutorial?
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.
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
I got it thank you game.HttpService:JSONEncode(HttpProxy:GetAsync(“https://groups.roblox.com/v1/groups/1”).memberCount)
How can I include the api in a website instead?
Here’s an easier way without the need of creating your own proxy:
local GroupID = 10000
local GroupProx = game.HttpService:GetAsync("https://groups.roproxy.com/v1/groups/"..GroupID)
local GroupInfo = game.HttpService:JSONDecode(GroupProx)
print(GroupInfo)
print(GroupInfo["memberCount"])
Make sure to replace the GroupID Variable to your Group ID.