Advertisement
Migas3456

unlock ws script(not made by me)

Feb 15th, 2018
4,408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function unlock(obj)
  2. for i,v in pairs(obj:GetChildren()) do
  3. if v:IsA("BasePart") then
  4. v.Locked = false
  5. end
  6. unlock(v)
  7. end
  8. end
  9. unlock(workspace)
  10.  
  11. -- Script created by BeautyBeat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement