Advertisement
d1ngz

Lowest Graphics on Roblox!

Dec 30th, 2019
8,946
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.35 KB | None | 1 0
  1. rem Create a new text file, paste this code, save the file as .bat extension!
  2.  
  3. @echo off
  4. cls
  5. title Potato Graphics on Roblox
  6. echo Warning! This batch file will delete all ROBLOX textures!
  7. echo (excluding the ui textures). I recommend you to make a backup
  8. echo file, so you don't need to reinstall ROBLOX to change it to normal.
  9. echo Are you sure? Press any key to continue!
  10. pause>nul
  11. cls
  12. echo Hold up. where is your ROBLOX Player located?
  13. set /p dest=
  14. cls
  15. echo Killing ROBLOX Player process...
  16. taskkill /f /im RobloxPlayerBeta.exe
  17. echo Deleting Terrain Textures...
  18. move /y "%dest%\PlatformContent\pc\textures\sky" "%dest%\PlatformContent\pc\sky"
  19. rd "%dest%\PlatformContent\pc\textures\" /s /q
  20. del "%dest%\PlatformContent\pc\terrain\*array.dds" /s /q
  21. del "%dest%\PlatformContent\pc\terrain\*_dep.dds" /s /q
  22. del "%dest%\PlatformContent\pc\terrain\specular.dds" /s /q
  23. del "%dest%\PlatformContent\pc\terrain\reflection.dds" /s /q
  24. md \\?\%dest%\PlatformContent\pc\textures
  25. move /y "%dest%\PlatformContent\pc\sky" "%dest%\PlatformContent\pc\textures\sky"
  26. echo Deleting Particles...
  27. del "%dest%\content\textures\particles\*.*" /f /q
  28. del "%dest%\content\textures\glow.png" /f /q
  29. del "%dest%\content\textures\explosion.png" /f /q
  30. del "%dest%\content\textures\sparkle.png" /f /q
  31. del "%dest%\content\textures\meshPartFallback.png" /f /q
  32. echo Done!
  33. pause>nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement