Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function unlock(obj)
- for i,v in pairs(obj:GetChildren()) do
- if v:IsA("BasePart") then
- v.Locked = false
- end
- unlock(v)
- end
- end
- unlock(workspace)
- -- Script created by BeautyBeat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement