Hello!
I’ve an issue with a group member script. I made a board, which displays how many members there are in my group. However, an erorr is popping up
Here is the code:
local groupId = 5863683
local groupData = game:GetService("GroupService"):GetGroupInfoAsync(groupId)
local httpService = game:GetService("HttpService")
local url = 'https://groups.rprxy.xyz/v1/groups/' .. groupId
while wait(10) do
local memberCount = httpService:JSONDecode(httpService:GetAsync(url)).memberCount
script.Parent.MemberCount.Text = "🔴[LIVE] Members: " .. memberCount
script.Parent.GroupImage.Image = groupData.EmblemUrl
script.Parent.GroupName.Text = groupData.Name
script.Parent.GroupDescription.Text = groupData.Description
end
There isn’t much with HTTP in the lobby, so I don’t know why it is saying that!
