TROLERMASTERH

Unanchor all

May 8th, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function exPro(root)
  2. for _, v in pairs(root:GetChildren()) do
  3. if v:IsA("BasePart") then
  4. v.Material = "Plastic"
  5. v.Transparency = 0
  6. v.Anchored = false
  7. v.Locked = false
  8. end
  9. exPro(v)
  10. end
  11. end
  12. function asdf(root)
  13. for _, v in pairs(root:GetChildren()) do
  14. asdf(v)
  15. end
  16. end
  17. exPro(game.Workspace)
  18. asdf(game.Workspace)
Add Comment
Please, Sign In to add comment