There’s likely a better way, but if all else fails, you can set a UObject to manually GC by calling Object->AddToRoot(). Keep in mind, this means that you need to manually Object->RemoveFromRoot() when you’re no longer using the object, and if you’re in PIE, you need to hook FEditorDelegates::OnPrePIEEnded and call Object->RemoveFromRoot() and Object->FinishDestroy().