How to make likes goal meter like from BIG Games?

Hello everybody, i’ve seen games that using “likes goal meter”, when the like’s counter can update by current game votes.

The live likes counter in game “My Restaurant!”:
image

Anyone have idea how to make something similiar?

I tried to use api.roblox.com but nothing worked, script returns error: "HttpService is not allowed to access ROBLOX resources".

Thanks for reading.

1 Like

I’m not completely sure, but I think they made a third-party server that proxies api.roblox.com, such as glitch.com, to retrieve the likes. I wouldn’t be surprised if there’s a community tutorial on the DevForum.

1 Like

ohh… nvm. It looks like you are trying to access how many likes your game has. I misread it. That one probably does use a 3rd party like the post above says

original

You could use datastores. That is likely what is being used for the example above. Depending on the exact use case though, memoryservice might also work.

1 Like

glitch.com? Interesting… Anyways, there’s no tutorial on the whole internet how to make something like that.

Unfortunately, I lack knowledge to make that work, but there’s tutorials on how to hook up Roblox’s API to an external service. You just need to know the correct API to use for it.

1 Like

Alright, that’s fine. Thanks for help? I will try to get better in API technologies.

Try something like RoProxy, I think it’s what you’re looking for. You can use ROBLOX API through it without it being blocked. Works the same as ROBLOX’s API but you replace roblox.com with roproxy.com I’ll give an example below.

https://games.roblox.com
games.roproxy.com

RoProxy.com - A free, rotating proxy for Roblox APIs - Resources / Community Resources - DevForum | Roblox

2 Likes

Glitch.com is not secure so I would not use it, use something else like heroku.

1 Like

Pretty sure there won’t be too much, if any, sensitive data going through, so I’m not sure that’s much if a problem there (unless I’m wrong about the parameters needed to access this API).

https://games.roblox.com/v1/games/votes?universeIds=1

Is the API endpoint you’re looking for, replace ‘1’ with the ID of your universe (can be accessed via ‘game.GameId’).

Yes but…

image

Yes, did you read the HttpService documentation beforehand? Requests to pages belonging to the ‘roblox.com’ domain are blocked. You need to renavigate the request through a proxy instead.

Search ‘devforum proxy’ in any web browser and you should be able to find several that are still operational.

welp, i just checked the last message first… okay thanks