Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rem Create a new text file, paste this code, save the file as .bat extension!
- @echo off
- cls
- title Potato Graphics on Roblox
- echo Warning! This batch file will delete all ROBLOX textures!
- echo (excluding the ui textures). I recommend you to make a backup
- echo file, so you don't need to reinstall ROBLOX to change it to normal.
- echo Are you sure? Press any key to continue!
- pause>nul
- cls
- echo Hold up. where is your ROBLOX Player located?
- set /p dest=
- cls
- echo Killing ROBLOX Player process...
- taskkill /f /im RobloxPlayerBeta.exe
- echo Deleting Terrain Textures...
- move /y "%dest%\PlatformContent\pc\textures\sky" "%dest%\PlatformContent\pc\sky"
- rd "%dest%\PlatformContent\pc\textures\" /s /q
- del "%dest%\PlatformContent\pc\terrain\*array.dds" /s /q
- del "%dest%\PlatformContent\pc\terrain\*_dep.dds" /s /q
- del "%dest%\PlatformContent\pc\terrain\specular.dds" /s /q
- del "%dest%\PlatformContent\pc\terrain\reflection.dds" /s /q
- md \\?\%dest%\PlatformContent\pc\textures
- move /y "%dest%\PlatformContent\pc\sky" "%dest%\PlatformContent\pc\textures\sky"
- echo Deleting Particles...
- del "%dest%\content\textures\particles\*.*" /f /q
- del "%dest%\content\textures\glow.png" /f /q
- del "%dest%\content\textures\explosion.png" /f /q
- del "%dest%\content\textures\sparkle.png" /f /q
- del "%dest%\content\textures\meshPartFallback.png" /f /q
- echo Done!
- pause>nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement