Why can't I set a decimal to my intValues

IntValues

SkinMultiplier.Value = 2 -- This works 

SkinMultiplier.Value = 1.2 -- Doesn't work, value doesn't change at all
1 Like

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.

7 Likes

IntValues are used to store integers, if you want to store a decimal use NumberValues.

1 Like