local HttpService = game:GetService("HttpService")
local UniverseId = game.GameId
local response = HttpService:GetAsync({
Url = "https://games.roproxy.com/v1/games/votes?universeIds="..UniverseId,
Method = "GET"
})
if response.Success then
local votes = HttpService:JSONDecode(response.Body)
print("upVotes:", votes.data[1].upVotes)
end
When I went to the website you provided, it said Access Denied: You do not have access to ROBLOX resources.
So I guess the API you were trying to communicate to is accessible only to admins.