Projects
Your active tracking instances.
Drop a single line into your script and get real-time execution data, unique visitors, and daily activity — all for free.
Tracking runs on Cloudflare Workers. Global. Sub-millisecond.
Create a project, copy the script, paste it in. That's it.
Total executions, unique visitors, daily activity — updated instantly.
Sign in with Discord and hit "New Project". Give it a name — you'll get an API key instantly.
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.
Every execution shows up in your dashboard in real-time. Share the public stats page with anyone.
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...
Your active tracking instances.