How to select parts in a model from view

so i made a map somebody in my team randomly ungrouped parts and locked certain parts

there a lot of maps in my explorer so like is there a way to ignore the locked property while selecting parts?? i need to select and grp em up fast

EDITTTTT: so i checked explorer and all the locked parts were named locked part (took me 2 hrs of explorer searching) i unlocked em and grped em all so now was wondering if there is a way to select each part as itself even if they all grped ?

3 Likes


Does doing something like this work?

no cuz my explorer is full of stuff ungrouped n all i need a way to select locked parts via view

1 Like

If you want to select certain parts without selecting the ones you don’t want. Hold Ctrl/Command then click the ones you want, unlike holding shift it won’t select all the parts between the 2 selected.

1 Like

again toooo many parts also tht part is done pls see edit

Mark the post I’m replying to as a Solution so people browsing will know its has been resolved.

it just kinda changed rather thn resolved

Here is an easy way to unlock all the parts in the workspace, simply put the script below into the studio command bar and press enter.

for i,v in pairs(game.Workspace:GetDescendants()) do if v:IsA("BasePart") and v.Locked then v.Locked = false end end

plss see the edit and tht would break my laptop way too many parts

is this what u mean cause idk what ur talking about

image

SIDE NOTE: To select a specific part in a model without ungrouping it you can hold down Alt and Click the part in the model

image

6 Likes