Script Usage
Use your member API key with the official loader for a supported experience.
Open Dashboard → Get Script and choose a supported experience. The page provides the loader code associated with your account.
02 / API Key
Keep your key private
The active loader reads your key from Config.ApiKey.
configuration.lua
_G.Config = {
ApiKey = "YOUR_API_KEY_HERE"
}Do not share your API key
Copy, reveal, or roll the key from Dashboard → Settings → Security. Rolling a new key immediately invalidates the previous key, so update any loader code that still uses it.
03 / Loader
Run the official code
Use the complete loader code shown on the Get Script page. A typical configuration uses the following format.
loader.lua
_G.Config = {ApiKey = "YOUR_API_KEY_HERE"}
loadstring(game:HttpGet("https://zkcommunity.cloud/loader.lua"))()Use only your own key and the current code provided by the Dashboard.