Trust Check Failed

I’m creating a gamepass list fetcher, but I keep getting Trust Check Failed error.

Script:

game.ReplicatedStorage.Remotes.RemoteFunction.OnServerInvoke = function()

return game:GetService("HttpService"):GetAsync("http://games.roblox.com/v1/games/2117361714/game-passes?sortOrder=Asc&limit=10")

end

You cannot send requests directly to Roblox domains from a game server because of self-DDOS concerns (or something). Use a proxy. Specifically, replace roblox.com with rprxy.xyz but keep everything else the same. In your case, you want https://games.rprxy.xyz/endpoint_here.

2 Likes