How to Disable/Enable array of Player_Spawner_devices

You would want to use a FOR loop to go through everything in your arrays
With the Object from the for loop, you then want to call its Enable/Disable functions where appropriate

for(Object : Spawns):
   Object.Disable()
1 Like