For anyone interested or for future reference, I think I have found a solution.
I needed to be able to do this:
Touch and release > Spawn ONLY one object
Touch and hold > Spawn several objects until touch is released
-------------------------------------------------------------------------------------------------
I solved it with a global variable. Here is the simplified version:
Create Global variable: "Shoot"
If "Shoot" = 0, "on any touch start" Spawn object
System Wait 0.2 seconds set "Shoot" = 1
If "Shoot" = 1, Is in touch Spawn object
On any End touch, Set "Shoot" = 0