> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/troubleshooting/errors/0033.md).

# 0033: Invalid local variable name

The compiler can't get the name of the [local variable](/language/data-types/variables.md#local-variables). It may happen if the name is not an integer number.

**Possible solutions:** use a valid integer number that meets the local variables [limit](/scm-documentation/gta-limits.md) for this game:

```
var@ = 1 // error
0@ = 1 // OK
```
