Advertisement
RandomNewbieScripter

Untitled

Jul 28th, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. --[[ made by ManMinded ]]--
  2.  
  3. texture = "http://www.roblox.com/asset/?id=343377229" -- put id there, then set last digit one number back
  4.  
  5. wait()
  6. local A = game.Workspace:GetChildren()
  7. local B = game.Workspace:GetChildren()
  8. local C = game.Workspace:GetChildren()
  9. local D = game.Workspace:GetChildren()
  10. local E = game.Workspace:GetChildren()
  11. local F = game.Workspace:GetChildren()
  12. for i,v in pairs(A) do
  13. if v:IsA("Part") then
  14. local d = Instance.new("Decal",v)
  15. v.Decal.Face = "Top"
  16. v.Decal.Texture = texture
  17. v.Anchored = true
  18. end
  19. end
  20.  
  21. for i,v in pairs(B) do
  22. if v:IsA("Part") then
  23. local s = Instance.new("Decal",v)
  24. s.Face = "Front"
  25. s.Texture = texture
  26. end
  27. end
  28.  
  29. for i,v in pairs(C) do
  30. if v:IsA("Part") then
  31. local h = Instance.new("Decal",v)
  32. h.Face = "Back"
  33. h.Texture = texture
  34. end
  35. end
  36.  
  37. for i,v in pairs(D) do
  38. if v:IsA("Part") then
  39. local j = Instance.new("Decal",v)
  40. j.Face = "Left"
  41. j.Texture = texture
  42. end
  43. end
  44.  
  45. for i,v in pairs(E) do
  46. if v:IsA("Part") then
  47. local k = Instance.new("Decal",v)
  48. k.Face = "Right"
  49. k.Texture = texture
  50. end
  51. end
  52.  
  53. for i,v in pairs(F) do
  54. if v:IsA("Part") then
  55. local l = Instance.new("Decal",v)
  56. l.Face = "Bottom"
  57. l.Texture = texture
  58. end
  59. end
  60. local lighting = game:GetService("Lighting")
  61. local sky = Instance.new("Sky", lighting)
  62. sky.SkyboxBk = texture
  63. sky.SkyboxDn = texture
  64. sky.SkyboxFt = texture
  65. sky.SkyboxLf = texture
  66. sky.SkyboxRt = texture
  67. sky.SkyboxUp = texture
  68. --[[ made by ManMinded ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement