IntValues
SkinMultiplier.Value = 2 -- This works
SkinMultiplier.Value = 1.2 -- Doesn't work, value doesn't change at all
IntValues
SkinMultiplier.Value = 2 -- This works
SkinMultiplier.Value = 1.2 -- Doesn't work, value doesn't change at all
It’s in the name. IntValue
is short for “Integer Value”. Decimals aren’t integers.
You’re going to need to use a NumberValue
for that.
IntValues are used to store integers, if you want to store a decimal use NumberValues.