Does Scripting Jump exist? (How To use/write goto)

well I’m asking as if there’s possibility to make this kind of jump or Must I wrap the random code in to function and call function like that?

jump start
// random code

if (true){
    // change variables in random code a bit
    jump to start
}

EDIT:

    goto start;

gives me:

    Assets/Scripts/CreateFloor.cs(102,38): error CS0159: The label `start:' could not be found within the scope of the goto statement

I couldn’t find anykind of goto with google but today I’ve accidentally found goto with scripting and it helped me and showed me goto than I remembered what was mike saying

now my Q is how to use this goto as if I start placing anything I get no help so I’m kinda blind + goto is not in manual

try placing "start : " somewhere. This should be the label you jump to.

In the goto statement, the you first must declare a label like this myLabel: and then jump too is later in code like this goto myLabel; however, this is a horrible coding practice, this should never be used in basic coding, use methods and loops instead.

edited:

My bad no direct jumping even if it does exist is a just terrible idea.

you just make a script and return to the script or dont leave start.