By default the `ActorSystem(...)` call starts a system-wide "daemon". This would allow different processes to create actors that can all communicate with each other.
Within any ActorSystem (system-wide or process-local), the use of `globalName` for Actor creation ensures only a single actor of that name is created within the ActorSystem.
In your situation, you have created a system-wide ActorSystem, and used `globalName` to ensure only a single "Subscriber" Actor is created within that system, which is why running this script in other processes does not create any additional Actors.
-Kevin