# 0055: Identifier not found

The compiler can't resolve the identifier (a [variable](https://docs.sannybuilder.com/language/data-types/variables) name, [constant](https://docs.sannybuilder.com/language/data-types/constants) value, etc) as it's missing or is invalid.

**Possible solutions:** write the correct identifier:

```
00A5: 0@ = create_car # at 0.0 0.0 0.0 // error, model name not found
00A5: 0@ = create_car #PONY at 0.0 0.0 0.0 // OK
```
