Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function exPro(root)
- for _, v in pairs(root:GetChildren()) do
- if v:IsA("BasePart") then
- v.Material = "Plastic"
- v.Transparency = 0
- v.Anchored = false
- v.Locked = false
- end
- exPro(v)
- end
- end
- function asdf(root)
- for _, v in pairs(root:GetChildren()) do
- asdf(v)
- end
- end
- exPro(game.Workspace)
- asdf(game.Workspace)
Add Comment
Please, Sign In to add comment