Roproxy not working for Like Counter?

Hello All!
I am trying to make a realtime like counter but I can’t seem to get roproxy to work. When ran in game, the output is blank.

Here is what I am using:

local HttpService = game:GetService("HttpService")
local UniverseId = 4503373201


task.wait(2)
print(2)
local response = HttpService:RequestAsync({
	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

Any help much appreciated :slight_smile:

Hello, i tried this too yesterday, but the access of https://games.roproxy.com/v1/games/votes? is denied, so you can’t use this proxy.

Yeah I was just made aware that this isn’t working anymore. Did you find a workaround for it?

Nope, i tried searching on internet for another proxy, but nothing found.

I also readed, that if you use 3rd party proxies, you data(cookies, passwords, ecc…) could be compromised(I don’t know if it’s real).

Yeah I also saw some other 3rd party proxies but many people say not to trust them. Thanks tho :slight_smile:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.