How to delete textures on roblox

Help and Feedback Building Support

Hi, I was wondering if there was a fast way to delete textures within parts quickly? I built a place with textured blocks, and I think that is causing some lag. To reduce it I want to remove them all, but it will be very time consuming to manually remove all the textures.

How to delete textures on roblox

Thanks!

1 Like

Right click Part > Select Children > Press Delete Key

Script way (Delete all textures on parts in Workspace)

for _, object in ipairs(workspace:GetDescendants()) do if object:IsA("Texture") then object:Destroy() end end

6 Likes

You can do shift from the first texture and hold shift click the last texture and click backspace well that is from me

1 Like

If you are dealing with multiple parts which have textures in them and want to delete them, search the explorer for “Texture” for the class-name and then shift click all the textures or items you want to remove.

1 Like

You could write a piece of code to put in the command line, something like this.

local parts = game.Workspace:GetChildren() for i,part in pairs(parts) do local textures = part:GetChildren() for i,texture in pairs(textures) do if texture.ClassName == "Texture" then texture:Destroy() end end end

1 Like

Also if I’m wrong please correct me thanks…

1 Like

Thanks for the replies, I’ll see how they work

1 Like

Unfortunately when I lookup “Texture” in the searchbox it doesn’t just show the textures, it also shows the parts they’re within, so if I shift click to select all then delete the brick will be deleted as well.

2 Likes

Ahh sorry if I delete you brick because I ever do that for a shortcut

1 Like

It is a tool that allows you to tweak Roblox Textures, Like:

  • Delete Textures.
  • Restore Textures.
  • List Textures.

Requirements to Run

  • .NET 6 or higher.
  • It should run on Windows 10 or higher. (I don't know if it going to work on Windows 7 or 8.)

I recommended using Roblox FPS Unlocker made by axstin. Note: Roblox Tweaker is not a FPS booster.

Probably in a recent update, Roblox has forcefully implemented textures in the client, so now they load in the game regardless of the textures being in the texture folder or even being in your computer, does anyone know why?
Why was this done?
What are the effects on low-end PCs and optimization?

Roblox has many blocks, cylinders, spheres, and wedges. Players can use textures or decals to apply images to a chosen surface. A texture repeats both horizontally and vertically across the entire surface. The textures can be modified according to the size f each “tile”.

  •   Go to Roblox player and right-click to open the file location.
  •   Then go to the PlatformContent and then click on PC.
  • There you will find the textures folder. You have to delete all the content of that folder except “brdfLUT.dds”, “studs.dds”, “wangIndex.dds”.

That’s all you have to do for deleting the textures in Roblox. The games will look dull without the textures but the gameplay will be smooth and lag-free. Players having low gaming devices can delete the textures to have the best gaming experience.