EXECUTION ANALYTICS

Track every run.

Drop a single line into your script and get real-time execution data, unique visitors, and daily activity — all for free.

01

Edge Delivery

Tracking runs on Cloudflare Workers. Global. Sub-millisecond.

02

Zero Config

Create a project, copy the script, paste it in. That's it.

03

Live Dashboard

Total executions, unique visitors, daily activity — updated instantly.

HOW IT WORKS

Set up in 60 seconds.

1

Create a project

Sign in with Discord and hit "New Project". Give it a name — you'll get an API key instantly.

2

Drop in the script

Click "Get Script" on your project and paste the generated code at the top of your Lua script. It fires once on execution — no setup needed.

3

Watch it live

Every execution shows up in your dashboard in real-time. Share the public stats page with anyone.

your_script.lua
local http = (syn and syn.request) or request or http_request
local HttpService = game:GetService("HttpService")

local function Track(eventType, userId)
    pcall(function()
        http({
            Url = "https://xutions.pages.dev/api/xutions/track",
            Method = "POST",
            Headers = { ["Content-Type"] = "application/json" },
            Body = HttpService:JSONEncode({
                apiKey = "YOUR_API_KEY",
                eventType = eventType or "PING",
                userId = userId or tostring(game.Players.LocalPlayer.UserId),
                metadata = {
                    placeId = game.PlaceId,
                    jobId = game.JobId
                }
            })
        })
    end)
end

Track("EXECUTION")

-- Your script continues below...

Projects

Your active tracking instances.

- Total Executions
- Unique Users
- Last 24h

New Project