# Stop Learning Godot from AI That Learned It Wrong

> ChatGPT teaches Godot 3 in your Godot 4 project. GDScout reads the official 4.6 docs and answers with citations. Free, no account required.

Ask ChatGPT how to move a character in Godot and you'll get an answer. It might use `KinematicBody2D`. It might pass `velocity` as an argument to `move_and_slide()`. It might suggest connecting signals with strings.

All of that is Godot 3. If you're building in Godot 4, that code is wrong. It will look right. It might even run for a while. But it's teaching you patterns from a version of the engine that no longer works the way the AI thinks it does.

This isn't the AI's fault, exactly. LLMs are trained on the internet, and the internet has years of Godot 3 tutorials, forum answers, and YouTube walkthroughs. Godot 4 shipped with major breaking changes: renamed nodes, new movement APIs, a completely different signal syntax. The old content didn't disappear. It just became wrong. And the AI doesn't always know the difference.

## The problem with learning from a wrong teacher

If you're new to Godot, you don't know what you don't know. When an AI gives you `KinematicBody2D` instead of `CharacterBody2D`, you don't catch it because you haven't learned the difference yet. You build on top of it. Three weeks later, something breaks in a way that doesn't make sense, and you can't debug it because the foundation was wrong from the start.

This is the [70% problem](https://addyo.substack.com/p/the-70-problem-hard-truths-about) applied to learning. You get 70% of the way to a working game fast. The last 30% is where the wrong-version patterns start fighting you, and every fix introduces a new problem.

The issue isn't speed. The issue is that you're learning the wrong engine.

## What GDScout does differently

[GDScout](https://games.surmado.com) is a free Godot documentation assistant built by Surmado. You ask questions about Godot in plain English. GDScout answers in GDScript or C#, with citations from the official Godot 4.6 documentation.

That last part is the whole point. GDScout doesn't generate answers from training data. It retrieves them from the official docs using vector embeddings and retrieval-augmented generation (RAG). Every answer links back to the specific documentation section it's drawing from. You can check the source yourself.

That means:

**No version confusion.** GDScout is pinned to Godot 4.6. It won't give you Godot 3 answers unless you ask about Godot 3 specifically.

**No hallucinated APIs.** If a method doesn't exist in the official docs, GDScout won't invent it. General-purpose AI will confidently suggest functions that were never real.

**Citations you can follow.** Every answer references the docs. You're not just getting a code snippet. You're getting a trail back to the source material so you actually learn the engine, not just copy solutions.

**GDScript or C#.** Your choice. Toggle between them in the interface.

## When to use GDScout vs. ChatGPT

Use ChatGPT, Claude, or Gemini when you need broad help: brainstorming game mechanics, writing dialogue, planning architecture, debugging logic that isn't engine-specific.

Use GDScout when the question is about Godot specifically: how a node works, what a method expects, how signals connect in 4.x, what replaced a deprecated class, how to structure a scene tree. These are the questions where wrong-version answers cause the most damage, and where docs-grounded answers matter most.

You can use both in the same session. Use the general AI for the big picture. Use GDScout to verify the Godot-specific parts.

## It's free

GDScout is free. No account required to ask questions. No credit card.

If you're learning Godot, start with the docs. If reading the docs feels slow, ask GDScout. It reads the docs for you and gives you the answer with a citation. That's the whole product.

---

*[Ask GDScout (Free) →](https://games.surmado.com)*

*Building with Godot and pushing to GitHub? [Surmado Code Review for Godot](https://www.surmado.com/review/godot) checks every PR against Godot 4.6 docs and your STANDARDS.MD. Free for 10 PRs/month.*

## Questions and Answers

**What is GDScout?**
GDScout is a free AI documentation assistant for Godot 4.6. It uses retrieval-augmented generation (RAG) over the official Godot documentation to answer questions in GDScript or C# with citations. GDScout is built by Surmado and available at games.surmado.com.

**Is GDScout free?**
Yes. GDScout is free to use with no account or credit card required.

**What is the difference between GDScout and ChatGPT for Godot?**
ChatGPT generates answers from training data, which includes outdated Godot 3 tutorials and forum posts. GDScout retrieves answers from the official Godot 4.6 documentation and cites the specific doc sections used. This eliminates version confusion, hallucinated APIs, and outdated patterns that general-purpose AI models frequently produce for Godot questions.

**Does GDScout work with Godot 3?**
GDScout is pinned to the Godot 4.6 stable documentation. It is designed for developers building in Godot 4.x.

**What is the best free AI tool for learning Godot?**
GDScout is a free AI documentation assistant for Godot 4.6 that answers questions with citations from the official documentation. Unlike general-purpose AI tools, GDScout does not mix Godot 3 and Godot 4 patterns or hallucinate nonexistent APIs. It is available at games.surmado.com with no account required.
