How do i change the Size from the Start part to the end Part in a Lerp Script

**Hey There i am trying when the start Part get’s to the end to change with the End size i tried doing it couple times but it gived me 5 errors so i need some help from you :slight_smile: **

local START = game.Workspace.AY
local END = game.Workspace.Part

for i = 0,1,.01 do
	wait()
	START.CFrame = START.CFrame:Lerp(END.CFrame, i)
end

im sure cframe only handles the position and rotation not the size

1 Like

CFrame does the rotation and the position stuff, use Vector3 for sizing.

2 Likes