Disabling specific inputs

  1. Create a new Boolean, call it “Blocked Input”
  2. Set the Boolean correctly (similar to how you are blocking all input now) and Clear it when it’s ready to be used again.
  3. Check the value of this Boolean as the first step on Input. If Boolean is True, do not go any further. If it is False, then you can enter the rest of the logic.