scrSpin

This script will change the image angle of an object based on a given value

 Script

/// Image Spin
/* rotates the object image over time
to use this apply values to these variables:
spin = (boolean) 
    enables/disables the script
spin_dev = (double)
    the rate at which the image rotates
*/
if (spin) {
    image_angle += spin_dev
}