Try this.
#NoTrayIcon ; Hide tray icon
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Color, 0
Gui, Show, x0 y0 h%A_ScreenHeight% w%A_ScreenWidth%
; --- Run Emulator ---
emuExe := "simple64-gui.exe"
emuPath := "E:\Nintendo\N64\Emulateur\Simple64 Super Mario\simple64-gui.exe"
romPath := "E:\Nintendo\N64\Jeux\Super Mario 64 (E) (M3) [!].z64"
Run, "%emuPath%" "%romPath%", , , emuPID
Sleep, 3000
Gui, Destroy
; --- Wait until emulator closes ---
Process, WaitClose, %emuPID%
ExitApp
; Optional: ESC closes emulator
Esc::
Process, Close, %emuPID%
return