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
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.
In your dashboard, click Copy my TrackStat loader. This gives you a loader with your API key embedded.
_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.
Execute the TrackStat loader while playing a supported game. You'll see [ZK COMMUNITY] TrackStat Loaded in the console when it starts.
Head to your dashboard. Your account will appear under the game's monitoring tab. Stats update every 30 seconds.
What Gets Tracked
- Currencies - Sheckles, Tokens, and any in-game currency
- Inventory - every item in your backpack, organized by category
- Pets - which pets you own, which are equipped, rarity, variants
- Custom Stats - backpack level, seed types, expansions, and more
- Money per minute - income rate calculated from sync deltas
- Session tracking - how long you've been playing
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.
- The same Roblox account in different games only counts as one slot
- If you hit the limit, new accounts are rejected - existing accounts keep syncing
- You can delete tracked accounts from the monitoring tab
Mailbox System
Some games support in-game item transfers through the dashboard:
- Go to the Mailing tab for your game
- Select a sender account (must be online in-game)
- Enter the recipient's Roblox username
- Add items from the sender's inventory
- Click Send - the job is claimed on the next TrackStat heartbeat
API Key
- Your API key is unique to your account and used to automatically link your executor to your dashboard
- You can regenerate it from Dashboard → Settings
- Regeneration is rate-limited to once per hour
ZK COMMUNITY