tulamide your python class works great when setting the values if i set them directly like -
Convert.set_hue(0.25)
Convert.set_saturation(0.5)
Convert.set_value(0.4)
however when i do this to have EditBox input -
Convert.set_hue(EditBox.Value)
Convert.set_saturation(EditBox2.Value)
Convert.set_value(EditBox3.Value)
I am getting errors, so i am guessing this might be the wrong way to get EditBox values. Is there a way to make the EditBox inputs work?