TrackStat

TrackStat is ZK COMMUNITY's optional account monitoring system. It tracks your game progress - money, inventory, pets, currencies, and custom stats - for each of your Roblox accounts. Everything shows up in your dashboard in real-time.

How It Works

When you run TrackStat alongside the script hub, it sends a snapshot of your game data to our servers every 30 seconds. Your dashboard polls this data and displays it live.

Setup

1
Get your API key

Log in to your dashboard and go to Settings. Your API key is displayed there. This key links your executor to your ZK COMMUNITY account.

2
Copy the TrackStat loader

In your dashboard, click Copy my TrackStat loader. This gives you a loader with your API key embedded.

lua
_G.Config = {
    ApiKey = "input your key",
}

local success
for attempt = 1, 5 do
    success = pcall(function()
        loadstring(game:HttpGet("https://zkcommunity.cloud/trackstat.lua"))()
    end)

    if success then break end
    task.wait(5)
end

Replace input your key with your actual API key from the dashboard. You can also use the Copy my TrackStat loader button in your dashboard which has the key already embedded.

3
Run it in-game

Execute the TrackStat loader while playing a supported game. You'll see [ZK COMMUNITY] TrackStat Loaded in the console when it starts.

4
Check your dashboard

Head to your dashboard. Your account will appear under the game's monitoring tab. Stats update every 30 seconds.

What Gets Tracked

Per-Game Monitoring

TrackStat supports multiple games. Each game has its own monitoring tab in the dashboard. Check the script status on the homepage or your dashboard sidebar for the current list of supported games.

Data is separated by game, so the same Roblox account in different games counts as separate entries in your dashboard.

Account Slots

Each ZK COMMUNITY account has a limit on how many Roblox accounts it can track. The default is 50.

Mailbox System

Some games support in-game item transfers through the dashboard:

  1. Go to the Mailing tab for your game
  2. Select a sender account (must be online in-game)
  3. Enter the recipient's Roblox username
  4. Add items from the sender's inventory
  5. Click Send - the job is claimed on the next TrackStat heartbeat
Note: The mailbox system requires the sender to be online and running TrackStat. Jobs are processed by the Lua adapter running in the game.

API Key