Advertisement
iiJosephCats205

Toad Roast Test

May 16th, 2018
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. sky = coroutine.create(function()
  2. while wait(0.3) do
  3. local s = Instance.new("Sky",game.Lighting)
  4. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  5. s.CelestialBodiesShown = false
  6. end
  7. end)
  8.  
  9. sound = coroutine.create(function()
  10. local a = Instance.new("Sound",workspace)
  11. a.SoundId = "rbxassetid://141509625"
  12. a.Name = "RAINING MEN"
  13. a.Volume = 58359
  14. a.Looped = true
  15. a:Play()
  16. while wait(0.2) do
  17. local rainin = workspace:FindFirstChild("RAINING MEN")
  18. if not rainin then
  19. a = Instance.new("Sound",workspace)
  20. a.SoundId = "rbxassetid://141509625"
  21. a.Name = "RAINING MEN"
  22. a.Volume = 58359
  23. a.Looped = true
  24. a:Play()
  25. end
  26. end
  27. end)
  28.  
  29.  
  30. rain = coroutine.create(function()
  31. while wait(10 % 0.5 * 1e2) do
  32. local part = Instance.new("Part",workspace)
  33. part.Name = "Toad"
  34.  
  35. local mesh = Instance.new("SpecialMesh",part)
  36.  
  37.  
  38. part.CanCollide = false
  39. part.Size = Vector3.new(440,530,380)
  40. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  41.  
  42.  
  43.  
  44. mesh.MeshType = "FileMesh"
  45. mesh.MeshId = "rbxassetid://430210147"
  46. mesh.TextureId = "rbxassetid://430210159"
  47. end
  48. end)
  49.  
  50. coroutine.resume(rain)
  51. coroutine.resume(sound)
  52. coroutine.resume(sky)
  53. coroutine.resume(del)
  54. coroutine.resume(msg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement