Make color more saturated

How do I saturate a part by a %? Like I have its original color as a color3 and whenver its color % goes up its saturation goes up.

local Part = workspace.ColorPart
local H,S,V = Part.Color:ToHSV()
S *= 1.1 --Multiplier

Part.Color = Color3.fromHSV(H, S, V)
1 Like