requestChange didn't work inside on setTimeout()?

Hello Guys,

This code works fine:
runtimeScene.requestChange(gdjs.SceneChangeRequest.PUSH_SCENE, “MFA_menu”);

But in this case doesn’t :frowning:

setTimeout(()=>{
runtimeScene.requestChange(gdjs.SceneChangeRequest.PUSH_SCENE, “MFA_menu”);
},time);

I do some things on that block “setTimeout” without problems but I need do that.

Suggestions? thanks a lot!