Advertisement
iiJosephCats205

MOANA

Apr 22nd, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. image = "http://www.roblox.com/asset/?id=601962439"
  2. image2 = "http://www.roblox.com/asset/?id=210486687"
  3. image3 = "http://www.roblox.com/asset/?id=947995509"
  4. image4 = image
  5.  
  6. for i = 30,1,-1 do
  7.     msg = Instance.new("Message",workspace)
  8.     msg.Text = "The Moana Invasion Will Begin in "..i.." >:D"
  9.     wait(1)
  10.     msg:Destroy()
  11.     wait(0)
  12. end
  13.  
  14. sky = coroutine.create(function()
  15.     while wait(0.3) do
  16.         s = Instance.new("Sky",game.Lighting)
  17.         s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = image,image,image,image,image,image
  18.         s.CelestialBodiesShown = false
  19.     end
  20. end)
  21.  
  22. sound = coroutine.create(function()
  23.     a = Instance.new("Sound",workspace)
  24.     a.SoundId = "rbxassetid://880159023"
  25.     a.Name = "RAINING MEN"
  26.     a.Volume = 58359
  27.     a.Looped = true
  28.     a:Play()
  29.     local d = Instance.new("DistortionSoundEffect",a)
  30.     d.Level = 1
  31.     while wait(0.2) do
  32.         rainin = workspace:FindFirstChild("RAINING MEN")
  33.         if not rainin then
  34.             a = Instance.new("Sound",workspace)
  35.             a.SoundId = "rbxassetid://880159023"
  36.             a.Name = "RAINING MEN"
  37.             a.Volume = 58359
  38.             a.Looped = true
  39.             a:Play()
  40.             local d = Instance.new("DistortionSoundEffect",a)
  41.             d.Level = 1
  42.         end
  43.     end
  44. end)
  45.  
  46. msg = coroutine.create(function()
  47.     while wait(0.4) do
  48.         msg = Instance.new("Message",workspace)
  49.         msg.Text = "MOANA IS MEME"
  50.         wait(0.4)
  51.         msg:Destroy()
  52.     end
  53. end)
  54.  
  55. flash = coroutine.create(function()
  56.     while true do
  57.         wait(1)
  58.         image = image2
  59.         wait(1)
  60.         image = image3
  61.         wait(1)
  62.         image = image4
  63.     end
  64. end)
  65.  
  66. rain = coroutine.create(function()
  67.     while wait(10 % 1 * 1e2) do
  68.         part = Instance.new("Part",workspace)
  69.         part.Name = "Toad"
  70.        
  71.         mesh = Instance.new("SpecialMesh",part)
  72.        
  73.         sound = Instance.new("Sound",workspace)
  74.        
  75.         part.CanCollide = false
  76.         part.Size = Vector3.new(440,530,380)
  77.         part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  78.    
  79.         mesh.Scale = Vector3.new(10,10,10)
  80.         mesh.MeshType = "FileMesh"
  81.         mesh.MeshId = "rbxassetid://441275670"
  82.         mesh.TextureId = "rbxassetid://441275676"
  83.     end
  84. end)
  85. coroutine.resume(sky)
  86. coroutine.resume(sound)
  87. coroutine.resume(msg)
  88. coroutine.resume(rain)
  89. coroutine.resume(flash)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement