-
-
Save Dexveloper/7d8705c637b09702ae96e10fced4add8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Key = "HKCU:\Software\ROBLOX Corporation\Environments\roblox-player" | |
while ($true) | |
{ | |
$CurrentValue = (Get-ItemProperty -Path $Key -Name "LaunchExp").LaunchExp | |
if ($CurrentValue -eq "InApp") | |
{ | |
#Write-Output "Value is InApp." | |
Set-ItemProperty -Path $Key -Name "LaunchExp" -Value "InBrowser" | |
} | |
Start-Sleep -Milliseconds 50 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment