Last active
April 27, 2024 20:18
-
-
Save ahmoin/59b2760d2cc32b09c9f654ee9409181a 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
| 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