I want to retrieve game data but every time i try and print it out i get this message. There are barely any useful resources on httpservice let alone roblox api
Im trying to access data from this website Bloxburg data
With this script
local HTTP = game:GetService("HttpService")
local url = "https://games.roblox.com/v1/games?universeIds=88070565"
local data = HTTP:GetAsync(url) -- where the error takes place
local decoded = HTTP:JSONDecode(data)
print(decoded.data) -- should print out a table
But i recieve this error
How could i make this function?