ScaleTo giving unexpected results

When I use ScaleTo, it gives unexpected results that arent at all scaling properly. It scales fine when I use the scale property in the properties window but not when I use the function, I use the following code below for scaling objects for an animation.

local NumberValue = Instance.new("NumberValue")
NumberValue.Value = 1.5
object:ScaleTo(NumberValue.Value)

local connection = NumberValue.Changed:Connect(function()
	object:ScaleTo(NumberValue.Value)
end)

This is what I get:

Idk how to help, i just wanted to say that i really love the swap effects

1 Like