Advertisement
aidanthescriptor101

um

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