Click on each sprite to show the time. Sometimes, you make a custom block that returns 0 if a statement if false and 1 if the statement if true. The conventional way is this: if (bool) { return 1; } else { return 0; } But in Scratch you can do this: return 0+(bool); Which means a shorter script. However, it turns out to be a little slower, because the second script needs to add a number with the Boolean, and it also needs to check if the boolean is true, where the other function only check the value of the boolean, then returns a value it does not have to compute using arithmetic.
To @TheLogFather for idea.