Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- made by haeie
- s=Instance.new'Sound';
- s.Parent=workspace;
- s.SoundId='rbxassetid://152840862';
- s.Pitch=1;
- s.Volume=1;
- s.Looped=true;
- s:play();
- local s = Instance.new("Sound")
- s.Name = "Sound"
- s.SoundId = "http://www.roblox.com/asset/?id=498764007"
- s.Volume = 10
- s.Looped = true
- s.archivable = false
- s.Parent = game.Workspace
- wait(3)
- s:play()
- for _, v in pairs(game.Lighting:GetChildren()) do if v.ClassName == 'Sky' then v:Destroy() end end
- local sky = Instance.new('Sky', game.Lighting)
- local params = {'SkyboxBk', 'SkyboxDn', 'SkyboxFt', 'SkyboxLf', 'SkyboxRt', 'SkyboxUp'}
- function switchSky(sk)
- for _,v in pairs(params) do
- sky[v] = sk
- end
- end
- while wait() do
- game.Lighting.FogEnd = 0
- game.Lighting.FogColor = Color3.new(math.random(), math.random(), math.random())
- switchSky('http://www.roblox.com/asset/?id=3184700794')
- wait()
- game.Lighting.FogColor = Color3.new(math.random(), math.random(), math.random())
- switchSky('http://www.roblox.com/asset/?id=3184703309')
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement