What is going on with my Roblox Group API script?

Alright so I’ve been getting this error every time I try doing it “Trust Check Failed”

local HttpService = game:GetService("HttpService")

    while true do
        Members = HttpService:JSONDecode(HttpService:GetAsync("https://groups.roblox.com/v1/groups/4813882")).memberCount
    	    script.Parent.Text = string.format('Pop. ', Members)
    	wait(60)
    end

image

I’m not sure, but I think that HTTPService can’t make requests to the roblox.com domain (a workaround is to use a proxy)

Nvm I found out Roblox has a Service called “GroupService”