local HttpService = game:GetService("HttpService") Use the new V2 script local function getGamePasses(placeId) local url = string.format("https://games.roblox.com/v1/games/%d/game-passes?limit=100", placeId) local success, response = pcall(function() return HttpService:GetAsync(url) end) if not success then warn("Failed to get game passes: " .. tostring(response)) return nil end local data = HttpService:JSONDecode(response) return data.data end -- Replace with your Roblox game's PlaceId local placeId = 1234567 local gamePasses = getGamePasses(placeId) if gamePasses then for _, pass in ipairs(gamePasses) do print(string.format("Game Pass Name: %s, ID: %d, Price: %d Robux", pass.name, pass.id, pass.priceInRobux)) end else print("No game passes found or failed to retrieve.") end