Advertisement
ManlyFoes

Untitled

Apr 28th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. baseurl = "http://www.roblox.com/asset/?id=2341893"
  2. decals = {}
  3. pre = {}
  4.  
  5. function add(id, name)
  6. decals[name] = baseurl:format(id-1)
  7. table.insert(pre, baseurl:format(id-1))
  8. end
  9.  
  10. add(50601527, "1")
  11. add(50601599, "2")
  12. add(50601611, "3")
  13. add(50601615, "4")
  14. add(50601624, "5")
  15. add(50601631, "6")
  16. add(50601641, "7")
  17. add(50601646, "8")
  18. add(50601652, "9")
  19. add(50601660, "10")
  20. add(50601664, "11")
  21. add(50601668, "12")
  22. wait()
  23. for i = 1, #pre do
  24. game:GetService("ContentProvider"):Prelo­ad(pre[i])
  25. wait()
  26. end
  27. wait()
  28. s = Instance.new("Sky",game.Lighting)
  29. s.CelestialBodiesShown = false
  30. while true do
  31. for i = 1, #pre do
  32. s.SkyboxBk = decals[tostring(i)]
  33. --[[]]s.SkyboxDn = decals[tostring(i)]
  34. s.SkyboxFt = decals[tostring(i)]
  35. s.SkyboxLf = decals[tostring(i)]
  36. s.SkyboxRt = decals[tostring(i)]
  37. s.SkyboxUp = decals[tostring(i)]
  38. --]]
  39. wait()
  40. end
  41. wait()
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement