of     1   

Mrmickyumyum3
#133618023Friday, May 09, 2014 6:08 PM GMT

Personally I think they should add a "lock all" tool. There has been Many occasions where I need Only a couple bricks unlocked and I need the rest locked. Instead of having the tool to do this, I have had to go through the map locking down many small pieces. Does anyone else agree that this tool should be added to the lock's drop down menu in the Roblox Studio? ~ Thanks for your time ~ ~ Mrmickyumyum3 ~
SkittleWizard
#133618434Friday, May 09, 2014 6:17 PM GMT

Sure.
grantox
#133620584Friday, May 09, 2014 6:57 PM GMT

Im pretty sure there is a lock all tool in the new studio, or is it an unlock all tool? If it's not in the new studio, it would be nice to add it.
Mrmickyumyum3
#133819679Sunday, May 11, 2014 4:36 PM GMT

They don't have it as far as i can see.
Zephyrical
#133819899Sunday, May 11, 2014 4:39 PM GMT

Here's two easy workarounds: 1. Select all the bricks you want and under "Properties", check "Lock". 2. Select all the bricks you want, group them, then use the lock tool.
goos_honk
#133820191Sunday, May 11, 2014 4:42 PM GMT

"There has been Many occasions where I need Only a couple bricks unlocked and I need the rest locked. " *There has been many occasions where I need only a couple bricks unlocked and I need the rest locked. But anyways, support.
DeveloperBlue
#133821349Sunday, May 11, 2014 4:54 PM GMT

function Lock(Obj) local X = Obj:GetChildren() for _,v in pairs(X) do if v:IsA("BasePart") then v.Locked = true else Lock(v) end end end Lock(game.Workspace) print("Objects Locked.") ----------- Putting that in the command bar will lock everything in your workspace. It won't miss a single brick.
Seizures
#133821591Sunday, May 11, 2014 4:57 PM GMT

How about you just make a plugin? Actually I should do that... :o I'll add in a little search part that allows you to select all the bricks/models with that phrase in its name.
Mrmickyumyum3
#133821619Sunday, May 11, 2014 4:58 PM GMT

Thank you to everyone that is supporting and giving ways to do this without the tool!
DeveloperBlue
#133824081Sunday, May 11, 2014 5:25 PM GMT

http://puu.sh/8Ih68.rar That's the plugin I just whipped up I'll tell you in advance, it's a 2kb .rar file. Personally, I'm telling you it's not a virus (But that's up to your judgement.) It's a DIRECT download link. As soon as you hit enter on the hotbar, it will ask if you want to download the LockAll.rar, if you have Malwarebytes you can scan it. Do you need help installing it into Studio? (I'm working on publishing it to the catalog, if you want to wait a bit)
Eqilux
#133825897Sunday, May 11, 2014 5:45 PM GMT

There is an ungroup and a group button somewhere that does everything you want it to do in this idea.
DeveloperBlue
#133826190Sunday, May 11, 2014 5:49 PM GMT

ChinchiilaMaster
#133826428Sunday, May 11, 2014 5:51 PM GMT

Group everything into a model. Use the lock tool on it. Mission complete.
DeveloperBlue
#133826880Sunday, May 11, 2014 5:56 PM GMT

Why would he take all that time out to select his models and parts when he could just click the plugin button once and it's done.
Mrmickyumyum3
#133913537Monday, May 12, 2014 2:05 PM GMT

#blueboy112 Thank you very much for this plugin! That will be very useful! as for everyone else, Thank you for the advise! You all helped me. THANK YOU

    of     1