The short answer
To make a game with AI in 2026 you need three things: an AI coding assistant (we use and test against Claude), a free game engine or framework (Phaser in a browser is the lowest-friction start), and a small enough idea. You describe what you want in plain English, the AI writes the code, you paste it into a file, and you watch your game run. A complete beginner can ship a real, playable, shareable game in 2 to 12 hours.
If you want to skip straight to doing it: the no-install browser game walkthrough is the fastest on-ramp (about 3 hours, nothing to install, free). All six Pixeldex walkthroughs end with a finished game uploaded to itch.io.
What "AI makes the game" actually means
It does not mean typing "make me an open-world RPG" and downloading a finished game. No tool does that, whatever its landing page says. What AI genuinely does today:
- Writes the code. This is the big one. The 40 beginner-hours that used to go to syntax errors and "which method do I call" now collapse into pasting working code and iterating on it in plain English.
- Debugs its own output. When something breaks, you paste the whole file back and say "find the problem." This works about 80% of the time and is the universal fix built into every one of our walkthroughs.
- Explains anything you want explained. A patient senior dev on tap, for free.
- Helps with placeholder art and sound — partially. See the art and sound section below, because this is where expectations most need managing.
What AI does not do: pick a scope you can finish, make design decisions, or care whether you ship. Those stay your job, and they are where most projects actually die — see why solo devs never finish games.
Step 1: pick your AI
You want a general-purpose AI coding assistant, not a browser toy that says "AI game maker" on the tin. The template-based "game maker" tools produce something fast and then hit a ceiling immediately: you cannot add the mechanic you actually wanted, and you do not own a real project at the end. A coding assistant plus a real engine gives you a normal game project — files on your computer that any future tool, tutorial, or collaborator can work with.
Every Pixeldex prompt and walkthrough is written for and tested against Claude, whose free tier is enough to finish a beginner walkthrough. ChatGPT works too; we compared them honestly in Claude vs ChatGPT for game development. Whichever you pick, the workflow is the same: describe, paste, run, iterate.
Step 2: pick your engine
The engine question matters less than beginners think, and the full comparison lives in the best free game engine for solo devs. The short version, ranked by activation energy:
- Phaser (browser, JavaScript). The no-install path: one HTML file, any browser, nothing downloaded. Where absolute beginners should start.
- Godot (free, open source). One small install, a friendly editor, and the fastest route to a finished desktop-style game. Our 2-hour Breakout walkthrough uses it.
- Pico-8 ($15, optional). A "fantasy console" with hard limits that make finishing easier. The only paid tool anywhere on this site.
- Unity (free Personal tier). The most-shipped indie engine. Heaviest setup; save it for your weekend project, not your first afternoon.
- LOVE2D (free, Lua). Tiny and beloved, best if you like minimal frameworks and the terminal.
Step 3: build your first game (pick a path)
These are complete, free, start-to-finish walkthroughs. Each ends with a real game uploaded to itch.io with your name on it.
- Never coded, want the gentlest start: the no-install browser game (~3 hours). TextEdit or Notepad, a browser, a free Claude account. Nothing else.
- Setting up a kid (9–13): the kids edition, plus our parent's guide for the supervision and account questions.
- Serial project-abandoner, need a fast finish: the 2-hour Godot Breakout clone.
- Ready for a real weekend project: the Unity 2D platformer in a weekend (~12 hours, coyote time and all).
- Love retro constraints: the Pico-8 puzzle game in 4 hours.
For the deeper version of choosing between these — what to expect step by step, what will go wrong and how to fix it — read the companion piece: how to make your first game with Claude.
Step 4: art and sound (where "AI does everything" breaks down)
This is the honest section. AI image generators are genuinely useful for concept art, mood boards, and reference sheets. They are still unreliable at game-ready pixel sprites: consistent character sheets, matching frame sizes, clean animation frames, coherent palettes. You will burn an evening trying to prompt your way to a usable 8-direction walk cycle.
The practical answer for a first game is placeholder-quality assets from tools that output game-ready files directly:
- The free procedural sprite generator rolls creatures, robots, and items in your browser, sized for an engine.
- The CC0 sprite library has ready-to-use pixel art with no attribution required.
- The sprite spec builder generates a template and an AI image prompt when you do want to try prompting an image model properly.
- For sound, the audio toolkit lists the free SFX generators and CC0 libraries that actually work for small games.
Ship the small game with placeholder art. Nice art is a version-2 problem, and finished-with-squares beats abandoned-with-concept-art every time.
What it costs
A first game made with AI should cost £0/$0: free AI tier, free engine, free hosting on itch.io, free walkthroughs and prompts here. The only optional purchase in any Pixeldex path is Pico-8 ($15 one-time). If you get serious later, the real numbers for shipping something commercial are in the cost of shipping an indie game in 2026 — spoiler: the floor is far lower than people think, and the biggest cost is still your time.
The five mistakes that kill AI-assisted first games
- Scoping like you have a team. AI speeds up coding, not finishing. If the idea does not fit in a weekend, it is not a first project. The scope-lock tool exists to make you write down what is out before you start.
- Vague prompts. "Make me a game" returns nothing usable. "A Phaser HTML file where a green square dodges falling red squares, arrow keys, score in the corner" returns something you can run in 60 seconds. Our prompt library is a set of tested, specific prompts for exactly this reason.
- Tool-shopping instead of building. Comparing engines for a week is procrastination wearing a productivity costume. Pick the no-install path and start today.
- Treating broken code as failure. Roughly one in five AI code blocks needs a fix. Paste the file back, ask the AI to find the problem, keep moving. This is the normal loop, not a sign it is not working.
- Trying to understand every line before continuing. Read the game, not the code. Comprehension arrives on its own by the third project.
After the first one
Finish something small, then: lock the scope on a tiny original idea with the scope-lock tool, reach for the prompt library when you hit a specific mechanic (coyote time, save systems, tile collision, particles), lay out a map with the level builder, and keep the loop going. The gap between "wants to make a game" and "has shipped one" has never been smaller. The people who cross it are not the ones with the best tools — they are the ones who picked a small enough game and finished it.