Advertisement
Guest User

Textures Off/On

a guest
Mar 22nd, 2021
4,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. All credits to AstralKick for this code, this should work even after Roblox updates unless they change the directory for textures or something along those lines which they have not done in a very long time.
  2.  
  3. ------------TEXTURES OFF----------------
  4.  
  5.  
  6. @echo off
  7.  
  8. for /f %%i in ('dir /Ad /b /s C:\Users\Truth\AppData\Local\Roblox\Versions\ *version*') do (
  9. ren %%i\PlatformContent\pc\textures TexturesOff
  10. )
  11.  
  12.  
  13.  
  14.  
  15.  
  16. ----------------TEXTURES ON-------------------
  17.  
  18. @echo off
  19.  
  20. for /f %%i in ('dir /Ad /b /s C:\Users\Truth\AppData\Local\Roblox\Versions\ *version*') do (
  21. ren %%i\PlatformContent\pc\TexturesOff textures
  22. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement