This is an example of how to use the (goto) command and how to label code.
restart // You can label anything at all just by typing whatever you want in front of your code
if(Damage >= 0)
M.HP -+ Damage
else
goto restart //this tells it to go to restart which you labeled at the top
//another example would be
one
if(Damage >= 0)
M.HP -+ Damage
goto one