Advertisement
thatonepuggo

/d/d/d/d/d/

Feb 2nd, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local m = Instance.new("Sound",workspace)
  2. m.SoundId = "rbxassetid://3618023001"
  3. m.Volume = 5
  4. m.Looped = true
  5. m:Play()
  6. local a = Instance.new("BoolValue",workspace)
  7. a.Name = "disco"
  8. a.Value = true
  9. while true do
  10. if a.Value == true then
  11. game.Lighting.Ambient = Color3.new(255,0,0)
  12. wait(1)
  13. game.Lighting.Ambient = Color3.new(0,255,0)
  14. wait(1)
  15. game.Lighting.Ambient = Color3.new(0,0,255)
  16. wait(1)
  17. else
  18. game.Lighting.Ambient = Color3.new(0,0,0)
  19. break
  20.  
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement