Advertisement
memesbruh03

RDM script

Aug 22nd, 2018
698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.66 KB | None | 0 0
  1. -- Roblox Default Music script.
  2.  
  3. -- Insert the Roblox Default Music
  4. music=Instance.new("Sound",workspace)
  5. music.SoundId="rbxassetid://142376963" -- May get unbroken in the future.
  6. music.Volume=10
  7. music.Playing=true
  8. dist=Instance.new("DistortionSoundEffect",music)
  9. dist.Level=1
  10.  
  11. -- Make everything red
  12. l=game.Lighting
  13. red=Color3.fromRGB(255,0,0)
  14. l.Ambient=red
  15. l.ColorShift_Bottom=red
  16. l.ColorShift_Top=red
  17. l.OutdoorAmbient=red
  18. l.FogColor=red
  19. l.FogEnd=0
  20. l.FogStart=0
  21.  
  22. -- Display the text
  23. msg=Instance.new("Hint",workspace)
  24. msg.Text="Roblox Default Music."
  25. msg2=Instance.new("Message",workspace)
  26. msg2.Text="Roblox Default Music."
  27.  
  28. -- © 2018 memesbruh03.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement