How do I disable a blueprint and enable it again

not sure if I understand what you’re trying to do exactly because it seems simple enough, so maybe I’m not but you can try this:

trigger 1

  1. on trigger one(overlap or whatever) start it with a branch. the true/false for the branch is a bool variable called “trigger one set?”
  2. if trigger one is true, then make the branch for true do nothing, otherwise false runs the ‘event’ or prints string or whatever, once the event is run immediately set the “trigger one set?” bool to true, so that if they try to trigger it again as per point 1, nothing happens. But in addition to setting “trigger one set?” to true,
  3. also set a second bool variable called “trigger two set?” to FALSE (that way when they go to the other trigger it CAN run now since this one just ran)

trigger 2

  • set up same as trigger 1 but reverse the bools (obviously).

hopefully thats basic system of what you’re after?