EXECUTION ANALYTICS

Track every run. Global.

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

xutions.com/p/demo
01

Global Insight

Track visitors from around the world with a high-fidelity interactive SVG map and country breakdown.

02

Activity Heatmap

Visualize usage patterns with GitHub-style heatmaps and detailed 24h hourly traffic charts.

03

Deep Analytics

Total executions, unique visitors, and custom event tracking — all updated in real-time.

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. Explore global visitor maps, activity heatmaps, and hourly charts. 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 "EXECUTION",
                userId = userId or tostring(game.Players.LocalPlayer.UserId)
            })
        })
    end)
end

Track()
⚠️ WARNING: Embedded API Keys can be easily stolen or spammed in plaintext Lua. Always obfuscate and harden your scripts before publishing!

Overview

Manage and monitor your script telemetry.

Quickstart Guide

To track executions, copy the tracker script and paste it at the top of your Lua code. It automatically reports load telemetry.

obfuscation warning

Plaintext keys are easily extracted by attackers. Always obfuscate and compile your scripts before release.

Since

by

- Total Executions
- Unique Users
- Last 24h
- Weekly Growth
- Daily Average
- Runs / User
- Countries
- Peak Window

Geographic Reach

Where your users are

Activity

7-day execution trend

Persistence

Daily frequency heatmap

Peak Hours

Hourly distribution (UTC)

Weekly Rhythm

By day of week

User Loyalty

New vs Returning

Top Countries

By execution volume

Active Projects

Explore active telemetry streams and public dashboards.