Hello! I want to make a game where you can track certain players. After some research, I figured out I have to use this api
But I can’t figure out how to use it in the game neither anywhere is there a tutorial! any help is appriceated.
Hello! I want to make a game where you can track certain players. After some research, I figured out I have to use this api
But I can’t figure out how to use it in the game neither anywhere is there a tutorial! any help is appriceated.
You’d want to use these:
https://developer.roblox.com/en-us/api-reference/class/HttpService
https://rprxy.xyz/
You can find a tutorial on how to use HttpService. The second website is a proxy because you can’t send requests to the roblox website from HttpService. The website gives a small example of how to send the request.
Thank you! I Know what you are trying to indicate
local URL = “http://api.rprxy.xyz/users/"..id.."/onlinestatus/”
local response = game:GetService(“HttpService”):GetAsync(URL)
local onlinestatustable = game:GetService("HttpService"):JSONDecode(response)
I Am just asking how I could make the URL! could you help me with that?