of     1   

BlueDanny
#141213565Tuesday, July 22, 2014 11:36 PM GMT

This statement would work if I was moving positions using a Repeat Until Script.. Part.CFrame = Part.CFrame + Vector3.new(0,i,0) But what if I wanted to do the size of an object? Such as a ball starting at size: 1,1,1 Then growing to the size of: 8.82,8.82,8.82?
cntkillme
#141213626Tuesday, July 22, 2014 11:36 PM GMT

Part.Size = Part.Size + Vector3.new(x, y, z)
Notunknown99
#141213660Tuesday, July 22, 2014 11:37 PM GMT

local c = Part.CFrame Part.Size = Part.Size + delta Part.CFrame = c + Vector3.new(0, i, 0)
BlueDanny
#141214036Tuesday, July 22, 2014 11:41 PM GMT

What about the "Until" part?
Notunknown99
#141214140Tuesday, July 22, 2014 11:42 PM GMT

You can figure that out for yourself ;)
BlueDanny
#141214464Tuesday, July 22, 2014 11:46 PM GMT

Oh I see I see.

    of     1