lilbub

Untitled

Jan 19th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. --[[
  2.  
  3. RAINDROP DEFAULT SCRIPTS
  4.  
  5. NAME :: AUTHOR :: DATE
  6. Purge :: brack4712 :: 10/29/16
  7.  
  8. INSTRUCTIONS
  9. [*] Change the values for the following to your liking:
  10. > FogEnd
  11. > Volume
  12. > Looped
  13. [*] Press Execute!
  14.  
  15. ENJOY!
  16.  
  17. --]]
  18.  
  19. local FogEnd = tonumber("20")
  20. local Volume = tonumber("1")
  21. local Looped = true
  22.  
  23. --- DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING! ---
  24.  
  25.  
  26. game.Lighting.FogEnd = FogEnd
  27. local sound = Instance.new("Sound",game.Workspace)
  28. sound.Name = "PurgeFX"
  29. sound.Looped = Looped
  30. sound.Volume = Volume
  31. sound.SoundId = "rbxassetid://232554097"
  32. sound:Play()
  33.  
  34. if Looped == true then
  35. else
  36. wait(70)
  37. sound:Destroy()
  38. game.Lighting.FogEnd = 100000
  39. end
Add Comment
Please, Sign In to add comment