Mass rename parts?

Is there any plugin or method available to rename all selected parts? I can’t seem to find a way to do it aside from individually or starting with the part already renamed…

9 Likes

I made a plugin for this before lol

https://www.roblox.com/library/1499764571/Part-Labeller
I havent updated it in a long time so uh yeah

4 Likes

Here’s something I quickly wrote. It will change the name of all currently selected parts:

local s = game:GetService("Selection")
local name = "INSERT NAME HERE"

for _,v in pairs(s:Get()) do
    v.Name = name
end

You can run this in the command bar

9 Likes

You can rename all the selected Parts, objects, etc in Properties, under Name. You do not require a plugin for it as far as I know :sunglasses:

26 Likes

why did I not try that I’m so stupid lmao

I just tried right clicking from explorer and it didn’t rename them all so I assumed it didn’t work

Thanks man!

1 Like

I want to mass rename parts “Glass” to “Window” but even though I searched for “Glass” in explorer name filter, it is showing irrelevant parts, and I can’t just mass select everything because then the model also gets renamed.

How do I filter for a “PART” & named 5 characters “GLASS” so I can just highlight everything in 1 sweep instead of going through each model.

as you can see in this image, if I try to highlight everything then the models will get renamed too which I don’t want

1 Like