How prevent actor to be copied in PIE?

I want to make preview actor in editor, so i mark spawned actor with RF_Transient and want also exclude it from PIE-copy of world. How to achieve this?

The solution is : Add RF_DuplicateTransient to your actor flags, that will prevent it from being copied to the PIE world.