Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local a = {"Back", "Bottom", "Front", "Left", "Right", "Top"}
  2. local b = "Surface"
  3. local c = "SmoothNoOutlines"
  4. local d = "BasePart"
  5. local w = workspace
  6. function e(f)
  7. if(f ~= nil) then
  8. for i,v in next, f:GetChildren() do
  9. e(v)
  10. end
  11. if(f:IsA(d)) then
  12. for i,v in pairs(a) do
  13. f[v..b] = c
  14. f.Transparency = 0.3
  15. end
  16. end
  17. end
  18. end
  19. e(w)
  20. script.Parent:Remove()
  21. print("Made by SK3#4121")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement