# 0054: Label not found

The compiler can't find the [label](https://docs.sannybuilder.com/language/data-types#labels) anywhere in the script.

**Possible solutions:** update the reference to match the existing label:

```
jump @start // error
jump @begin // OK

:begin
```
