hi all i have tried finding a solution but i cant find one so i will ask question
when i make a "Size = Vector3.new(0, 0, 0)", expect when the parts change size they get bothered or like teleport above other parts they touch while they grow, how do i get past this?
The way I get around this is copy the CFrame before you resize it. And then set the CFrame to the copied CFrame. CFrame can go through blocks but Position doesn't I really like CFrame better but using Position does have its perks
EXAMPLE CODE:
local oldcframe = part.CFrame part.Size = Vector3.new(25, 5, 50) part.CFrame = oldcframe
That will return the brick to its original position after you resize it.