Labels is a typical function in some coding that will be very useful in Platform Builder (Mostly on combining conditionals and in very large command prompts)
A label is set like this
=[label name]=
For example:
=Finish_game=
To call this label, will be like this
goto Finish_game
or
goto label Finish_game
What this does?
This will be useful because when we call a Label, the command prompts stops and instantly will start to execute commands from where the label is set in that command prompt.
For example
if score = 50
{
score - 50
goto Correct
}
exit
=Correct=
if lives > 5
{
# Commands here
}
If the label you go isn't in the command prompt set, the game continues the commands from where it started to go to the label, and just ignores it.