Advertisement
zephpsian

Untitled

Oct 9th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Color1 = ""
  2. coroutine.resume(coroutine.create(function()
  3. speed = 5 --Change to speed you want
  4. while true do
  5. for i = 0,1,0.001*speed do
  6. Color1 = i --creates a color using i
  7. wait()
  8. end
  9. end
  10. end))
  11.  
  12.  
  13. pbl = Sound.PlaybackLoudness
  14. Bright = pbl/60
  15.  
  16. if pbl/60 < 0 then
  17. Bright = 0.1
  18. elseif pbl/60 > 1 then
  19. Bright = 1
  20. end
  21.  
  22. Color = Color3.fromHSV(Color1,Bright,Bright)
  23. BeamColor = Color
  24. Headphones.Color = Color
  25. Light.Color = Color
  26. Disk.Position = Torso.Position - Vector3.new(0,3,0)
  27. Disk.Color = Color
  28. tail.Color = Color
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement