# 0033: Invalid local variable name

The compiler can't get the name of the [local variable](https://docs.sannybuilder.com/language/data-types/variables#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](https://docs.sannybuilder.com/scm-documentation/gta-limits) for this game:

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