Can someone help me I’m stuck on this and don’t understand.
local groupId = 13859075
local groupData = game:GetService(“GroupService”):GetGroupInfoAsync(groupId)
local httpService = game:GetService(“HttpService”)
local url = ‘https://groups.roblox.com/v1/groups/’ … groupId
while wait(5) do
local memberCount = httpService:JSONDecode(httpService:GetAsync(url)).memberCount script.Parent.MemberCount.Text = "0" .. memberCount script.Parent.GroupImage.Image = groupData.EmblemUrl script.Parent.GroupName.Text = groupData.Name script.Parent.GroupDescription.Text = groupData.Description
end