Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Make = function ()
- local Part = Instance.new('Part')
- Part.Color = Color3.fromRGB(math.random(1,255),math.random(1,255),math.random(1,255))
- Part.Size = Vector3.new(2,2,2)
- Part.Anchored = false
- Part.Material = 'Neon'
- Part.Parent = game.Workspace
- Part.Position = Vector3.new(math.random(1,512),100,math.random(1,512))
- end
- end
- local FixTime = function ()
- local Lighting = game.Lighting
- Lighting.ClockTime = 14
- Lighting.GeographicLatitude = 41.733
- Lighting.Ambient = Color3.fromRGB(0, 0, 0)
- Lighting.Brightness = 1
- Lighting.GlobalShadows = true
- end
- local MusicMake = function ()
- local Sound = Instance.new('Sound')
- Sound.Volume = 10
- Sound.EmitterSize = 100000
- Sound.SoundId = "https://web.roblox.com/library/837450267/Here-Comes-The-Money"
- Sound:Play ()
- Sound.Looped = true
- end
- local Deb = true
- repeat
- wait(0.01)
- local Check13 = math.random(1,10)
- if Deb == true
- then
- Deb = false
- MusicMake()
- end
- if Check13 ==1 then
- Corrupt()
- end
- FixTime()
- Make()
- until false
Advertisement
Add Comment
Please, Sign In to add comment