How do we view total monthly visits/total daily active users now?

Ever since ROBLOX got rid of the Developer Stats option, I can’t seem to find a straightforward way that gives me the total visits/total DAUs for my game - which is a very useful statistic to know.

Does anyone know how to find it? The only options I’ve seen under Engagement are only updated to December 2023, or give me the daily average across an x day span - but not the total.

3 Likes

correct me if i’m wrong but I believe you’d do this:

local HTTPService = game:GetService("HttpService")
local placeId = 11111111 -- Replace this with your game ID!
local universeId = http:GetAsync("http://api.rprxy.xyz/universes/get-universe-containing-place?placeid="..placeId)
universeId = universeId:gsub("[^%d%.%-]", "")
local get = http:GetAsync("http://games.rprxy.xyz/v1/games?universeIds="..universeId)
local data = http:JSONDecode(get)
print(data["data"][1].visits)

try that.

How would I change this code to make it show a particular month and year, that is not the current one? Right now, it seems like it just shows the current month