Advertisement
yamanohera155233

Untitled

Jun 27th, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement