Simple pen gradient function I wrote. (softer gradient in the background, with more distinct random ones for demonstration) Right now, only can draw horizontal and vertical gradients. You can use this in your projects by dragging the pen sprite into your backpack (it needs multiple custom blocks to work). You can then remove the "When Flag Clicked" section and use the custom blocks for your own needs. Features: *You can draw gradients within a certain range, and can choose the RGB of the color it starts at and the color it fades to *Fast *Customizable size of pen to allow for sharper or gentler resolutions *Horizontal and Vertical gradients How I did it: I created LERP Function w/ RGB values. Basically, you have a percentage, and you use it to find the value that is that percentage from value1 to value2 (lerp function available in the project). The lerp (linear interpolation) formula allows me to gradually (by slowly increasing the percentage) shift from one color to the next.