> For the complete documentation index, see [llms.txt](https://docs.looplay.gg/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.looplay.gg/game-creators.md).

# Game Creators

The Game Creator Program is the system that allows anyone to become a builder inside Looplay.

Instead of traditional game dev tools, you work with two things: **Looplay's AI Agent**, which builds the game with you, and the open **Looplay SDK**, which connects your game to the platform's economy.

### **Building with the AI Agent**

1. Describe your game
2. Set the core mechanics
3. Let the AI generate it
4. Test and refine
5. Launch and distribute across Looplay's platforms

The AI handles the heavy lifting: game logic, structure, and generation. You focus on what actually matters: the idea, the gameplay, and making it fun. The goal isn't to replace creativity. It's to remove the friction that slows it down.

### What the SDK does

The Looplay SDK (`@looplay/sdk` on npm) is a lightweight layer that connects any game to Looplay:

* **Player tracking.** Views, play sessions, matches, and custom game events, all verified server-side. This is what powers quests, rewards, and points.
* **Your game's store.** Sell in-game items for Coins directly inside your game. No backend of your own required.
* **Works anywhere.** Your game can live on Looplay or be published on your own site. The same code runs in both places. (Play only counts toward quests and rewards when it happens inside Looplay.)
* **Zero build step if you want.** A drop-in script tag is enough to integrate.

If the AI built your game on Looplay, the SDK is already wired in. If you built your game elsewhere, integration takes a handful of calls.

> You build and publish through your creator dashboard. The SDK connects your game to Looplay's economy: tracking, rewards, and your in-game store. Distribution across platforms happens automatically once you publish.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.looplay.gg/game-creators.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
