Skip to content

Instantly share code, notes, and snippets.

@howmanysmall
Created September 12, 2022 22:22
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save howmanysmall/1f34b6df3ae5f344d78ef996f8b4efda to your computer and use it in GitHub Desktop.
Save howmanysmall/1f34b6df3ae5f344d78ef996f8b4efda to your computer and use it in GitHub Desktop.
$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
}
@msfnxy
Copy link

msfnxy commented Sep 24, 2022

Poyois

yea it's currently patched rn

@howmanysmall
Copy link
Author

Yeah, use this. It was a good fix until I brought attention to it.

@aoqia194
Copy link

aoqia194 commented Feb 11, 2023

A while true loop.
Oh good god.

I would not recommend running this as it runs every 50 milliseconds.

@howmanysmall
Copy link
Author

it doesn't even work anymore and barely did anything performance wise

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment