Advertisement
somefunplz

Expro Script this might not work

Aug 17th, 2015
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Clicked()
  2. if 2 > 1 then
  3.  
  4. decalID = skyboxidbox.Text
  5. function exPro(root)
  6. for _, v in pairs(root:GetChildren()) do
  7. if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id=147612406"..decalID then
  8. v.Parent = nil
  9. elseif v:IsA("BasePart") then
  10. v.Material = "Plastic"
  11. v.Transparency = 0
  12. local One = Instance.new("Decal", v)
  13. local Two = Instance.new("Decal", v)
  14. local Three = Instance.new("Decal", v)
  15. local Four = Instance.new("Decal", v)
  16. local Five = Instance.new("Decal", v)
  17. local Six = Instance.new("Decal", v)
  18. One.Texture = "http://www.roblox.com/asset/?id=147612406"
  19. Two.Texture = "http://www.roblox.com/asset/?id=147612406"
  20. Three.Texture = "http://www.roblox.com/asset/?id=147612406"
  21. Four.Texture = "http://www.roblox.com/asset/?id=147612406"
  22. Five.Texture = "http://www.roblox.com/asset/?id=147612406"
  23. Six.Texture = "http://www.roblox.com/asset/?id=147612406"
  24. One.Face = "Front"
  25. Two.Face = "Back"
  26. Three.Face = "Right"
  27. Four.Face = "Left"
  28. Five.Face = "Top"
  29. Six.Face = "Bottom"
  30. end
  31. exPro(v)
  32. end
  33. end
  34. function asdf(root)
  35. for _, v in pairs(root:GetChildren()) do
  36. asdf(v)
  37. end
  38. end
  39. exPro(game.Workspace)
  40. asdf(game.Workspace)
  41. end
  42. end
  43.  
  44. script.Parent.MouseButton1Click:connect(Clicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement