Advertisement
BredIsDead

cancer

Feb 28th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. -- Cancer code
  2. -- Like seriously, dont use it
  3. -- Your still readin?
  4.  
  5. Col1Mode = true
  6. Col2Mode = true
  7. Col3Mode = true
  8. Col1 = 85
  9. Col2 = 170
  10. Col3 = 250
  11.  
  12. -- Wow, you are considering it.
  13.  
  14. hook.Add("PostDraw2DSkyBox", "xd",function()
  15.  
  16. if Col1Mode then Col1 = Col1 + 0.1 else Col1 = Col1 - 0.1 end
  17. if Col2Mode then Col2 = Col2 + 0.1 else Col2 = Col2 - 0.1 end
  18. if Col3Mode then Col3 = Col3 + 0.1 else Col3 = Col3 - 0.1 end
  19.  
  20. if Col1 > 255 then Col1Mode = false end
  21. if Col1 < 10 then Col1Mode = true end
  22.  
  23. if Col2 > 255 then Col2Mode = false end
  24. if Col2 < 10 then Col2Mode = true end
  25.  
  26. if Col3 > 255 then Col3Mode = false end
  27. if Col3 < 10 then Col3Mode = true end
  28.  
  29. render.Clear(Col1,Col2,Col3,255)
  30. end)
  31. -- Wow, if you read this you are actually using this trash...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement