Suggestion... In the box labeled "Play Mode" you have a script in PostStep that is: App.GUI.playMode = true The problem with that is, when the scene is paused by the user, it will stay in Play mode. A better script would be: App.GUI.playMode = sim.running (in UpDate). That way the scene will automatically come out of Play mode when the scene is Paused.