Advertisement
MESCRIPT

just see for your self

Jul 9th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. --script by kwert#7480 this is the laggy version this will unanchor a lot of stuff in the game
  2.  
  3. wait(1)
  4. local sky = Instance.new("Sky", game.Lighting)
  5. local song = Instance.new("Sound", game.Workspace)
  6. song.SoundId = "rbxassetid://549231151"
  7. song.Volume = 10
  8. song.Looped = true
  9. song.Name = "IT'S RAINING MEN!"
  10. song:Play()
  11. wait (38)
  12. sky.SkyboxBk = "http://www.roblox.com/asset/?id=18381946"
  13. sky.SkyboxDn = "http://www.roblox.com/asset/?id=18381946"
  14. sky.SkyboxFt = "http://www.roblox.com/asset/?id=18381946"
  15. sky.SkyboxLf = "http://www.roblox.com/asset/?id=18381946"
  16. sky.SkyboxRt = "http://www.roblox.com/asset/?id=18381946"
  17. sky.SkyboxUp = "http://www.roblox.com/asset/?id=18381946"
  18.  
  19. colorc=Instance.new("ColorCorrectionEffect",game.Lighting)
  20. wait()
  21. spawn(function()
  22. while wait() do
  23. colorc.Contrast=math.random(-1000,1000)
  24. colorc.Saturation=math.random()
  25. colorc.TintColor = Color3.new(math.random(), math.random(), math.random())
  26. end
  27. end)
  28.  
  29. spawn(function()
  30. while wait() do
  31. game.Lighting:SetMinutesAfterMidnight(0)
  32. wait()
  33. game.Lighting:SetMinutesAfterMidnight(14 * 60)
  34. end
  35. end)
  36.  
  37. function FUNCTION(a)
  38. if (a.className == "Part") or (a.className == "Seat") or (a.className == "SpawnLocation") then
  39. a.Anchored = false
  40. end
  41. local b = a:GetChildren()
  42. for i=1,#b do
  43. FUNCTION(b[i])
  44. end
  45. end
  46.  
  47. FUNCTION(game.workspace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement