Maybe kinda stupid but is there any oother way to do this code:
while true do script.Parent.Size = Vector3.new(2,2,2)+1 wait(1) end
So you want to make a part bigger every second by 1 studs?
local Part = script.Parent while true do wait(1) Part.Size = Part.Size + Vector3.new(1,1,1) end
this will make the part bigger by 1 studs (X,Y,Z) every second.
I didn't test this code , I just write it out..