Advertisement
RiasGremory0100

Untitled12345

Feb 12th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. script.Parent = game.StarterGui
  2. math.randomseed(tick() % 1 * 1e6)
  3. sky = coroutine.create(function()
  4. while wait(0.3) do
  5. s = Instance.new("Sky",game.Lighting)
  6. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  7. s.CelestialBodiesShown = false
  8. end
  9. end)
  10.  
  11.  
  12. del = coroutine.create(function()
  13. while wait(0.3) do
  14. for i,v in pairs(workspace:GetChildren()) do
  15. if v:IsA("Model") then
  16. v:Destroy()
  17. end
  18. end
  19. end
  20. end)
  21.  
  22. for i,v in pairs(game.Players:GetChildren()) do
  23. v.Character.Archivable = true
  24. end
  25.  
  26.  
  27. local o=Instance.new("Sound",game.Workspace)
  28. o.Volume=100
  29. o.SoundId="rbxassetid://141509625"
  30. o.Looped=true
  31. o.Pitch=1
  32. o:Play()
  33.  
  34.  
  35. rain = coroutine.create(function()
  36. while wait() do
  37. part = Instance.new("Part",workspace)
  38. part.Name = "Toad"
  39. mesh = Instance.new("SpecialMesh",part)
  40. part.CanCollide = false
  41. part.Size = Vector3.new(440,530,380)
  42. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  43. mesh.MeshType = "FileMesh"
  44. mesh.MeshId = "rbxassetid://430210147"
  45. mesh.TextureId = "rbxassetid://430210159"
  46. local trail = Instance.new("Trail", toad)
  47. trail.Attachment0 = a0
  48. trail.Attachment1 = a1
  49. trail.FaceCamera = true
  50. trail.Lifetime = 1
  51. trail.Transparency = NumberSequence.new(0,0.5,0,1,1,0)
  52. trail.Texture = "http://www.roblox.com/asset/?id=102124677"
  53. --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  54. wait(0.1)
  55. end
  56. end)
  57. coroutine.resume(sky)
  58. coroutine.resume(del)
  59. coroutine.resume(sound)
  60. coroutine.resume(msg)
  61. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement