CreeperReaper48

Untitled

Mar 31st, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Make = function ()
  2. local Part = Instance.new('Part')
  3. Part.Color = Color3.fromRGB(math.random(1,255),math.random(1,255),math.random(1,255))
  4. Part.Size = Vector3.new(2,2,2)
  5. Part.Anchored = false
  6. Part.Material = 'Neon'
  7. Part.Parent = game.Workspace
  8. Part.Position = Vector3.new(math.random(1,512),100,math.random(1,512))
  9. end
  10.  
  11.  
  12. end
  13. local FixTime = function ()
  14. local Lighting = game.Lighting
  15. Lighting.ClockTime = 14
  16. Lighting.GeographicLatitude = 41.733
  17. Lighting.Ambient = Color3.fromRGB(0, 0, 0)
  18. Lighting.Brightness = 1
  19. Lighting.GlobalShadows = true
  20.  
  21. end
  22. local MusicMake = function ()
  23. local Sound = Instance.new('Sound')
  24. Sound.Volume = 10
  25. Sound.EmitterSize = 100000
  26. Sound.SoundId = "https://web.roblox.com/library/837450267/Here-Comes-The-Money"
  27. Sound:Play ()
  28. Sound.Looped = true
  29.  
  30. end
  31. local Deb = true
  32. repeat
  33. wait(0.01)
  34. local Check13 = math.random(1,10)
  35. if Deb == true
  36. then
  37. Deb = false
  38. MusicMake()
  39. end
  40. if Check13 ==1 then
  41. Corrupt()
  42. end
  43. FixTime()
  44. Make()
  45. until false
Advertisement
Add Comment
Please, Sign In to add comment