I want that if some group recruits a certain number of participants, then script should inform about it, is this realistic?
@Kingmaster_GamePlay
This should work!
You don’t need to edit the top you just edit the bottom. You can print it if you want. GetMemberCount(GROUPID)
local HttpService = game:GetService("HttpService")
local function GetMemberCount(GroupID)
local Base = "https://groups.roproxy.com/v1/groups/"
local Request = HttpService:GetAsync(Base .. GroupID)
local Data = HttpService:JSONDecode(Request)
return Data.memberCount
end
print(GetMemberCount(3959677))
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.