Skip to content

Instantly share code, notes, and snippets.

@ahmoin
Last active April 27, 2024 20:18
Show Gist options
  • Select an option

  • Save ahmoin/59b2760d2cc32b09c9f654ee9409181a to your computer and use it in GitHub Desktop.

Select an option

Save ahmoin/59b2760d2cc32b09c9f654ee9409181a to your computer and use it in GitHub Desktop.
cd %LOCALAPPDATA%\Roblox\Versions\
for /D %%d in (*) do (
if exist "%%d\RobloxPlayerBeta.exe" (
if not exist "%%d\ClientSettings" mkdir "%%d\ClientSettings"
(
echo {
echo "DFIntTaskSchedulerTargetFps": "120",
echo "DFFlagDebugEnableInterpolationVisualizer": "True",
echo "DFIntDebugFRMQualityLevelOverride": "1"
echo }
) > "%%d\ClientSettings\ClientAppSettings.json"
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment