Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1)
- image = "rbxassetid://2333454655"
- math.randomseed(tick() % 1 * 1e6)
- sky = coroutine.create(function()
- while wait(0.3) do
- s = Instance.new("Sky",game.Lighting)
- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = image,image,image,image,image,image
- s.CelestialBodiesShown = false
- end
- end)
- sound = coroutine.create(function()
- a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://2538467220"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- while wait(0.2) do
- rainin = workspace:FindFirstChild("RAINING MEN")
- if not rainin then
- a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://2538467220"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- end
- end
- end)
- msg = coroutine.create(function()
- while wait(0.4) do
- msg = Instance.new("Message",workspace)
- msg.Text = "HACKED BOI"
- wait(0.4)
- msg:Destroy()
- end
- end)
- coroutine.resume(sky)
- coroutine.resume(sound)
- coroutine.resume(msg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement