Kantu skip commando when error

Hello i have this Code.
The part with the command !{!statusOK} doesn't work. By that I mean the program clicks and the webpage says something like sorry there are to many users right now... Then my script should go to the next command to the end. But the command !{!statusOK} does not work. For your information this is kinda a loop. I just wrote down here one part. The next part is the same just with US2 instead of US1.

{
      "Command": "open",
      "Target": "https://www.proxysite.com/de/",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "name=server-option",
      "Value": ""
    },
    {
      "Command": "select",
      "Target": "name=server-option",
      "Value": "label=**US1**"
    },
    {
      "Command": "click",
      "Target": "name=d",
      "Value": ""
    },
    {
      "Command": "gotoIf",
      "Target": "!${!statusOK}",
      "Value": "CLICK-FAILED"
    },
    {
      "Command": "type",
      "Target": "name=d",
      "Value": "google.com"
    },
    {
      "Command": "gotoIf",
      "Target": "${!statusOK}",
      "Value": "CLICK-FAILED"
    },
    {
      "Command": "pause",
      "Target": "2000",
      "Value": ""
    },
    {
      "Command": "clickAndWait",
      "Target": "xpath=//*[@id=\"url-form-wrap\"]/form/div[2]/button",
      "Value": ""
    },
    {
      "Command": "gotoIf",
      "Target": "!${!statusOK}",
      "Value": "CLICK-FAILED"
    },
    {
      "Command": "type",
      "Target": "name=q",
      "Value": "1234"
    },
    {
      "Command": "clickAndWait",
      "Target": "name=btnK",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "xpath=//*[@id=\"rso\"]/div/div/div[2]/div/div/div[1]/a[1]/h3/div",
      "Value": ""
    },
    {
      "Command": "pause",
      "Target": "5000",
      "Value": ""
    },
    {
      "Command": "label",
      "Target": "CLICK-FAILED",
      "Value": ""
    },

here comes the same script just with another number for US1, 2, 3,

  1. Please use GotoIf**_V2**

  2. If this does not solve it, can you add an ECHO | ${!statusOK} before GotoIf to check what value the var has?