of     1   

ikoviron
#182357955Monday, January 25, 2016 2:43 AM GMT

Size = script.Parent.Size local x = Size.X local y = Size.Y local z = Size.Z while true do wait(1) Size = Size*(Vector3.new(x+1, y+1, z+1)) end
robotmega
#182358808Monday, January 25, 2016 2:54 AM GMT

local part = script.Parent while wait(1) do part.Size = part.Size + Vector3.new(1, 1, 1) end
cody123454321
#182359571Monday, January 25, 2016 3:04 AM GMT

local part = script.Parent part.Size = part.Size + Vector3.new(1,1,1) print(part.Size) -- run these seperately local size = script.Parent.Size size = size + Vector3.new(1,1,1) print(part.Size) print(size) There are massive differences between both these.
ikoviron
#182360357Monday, January 25, 2016 3:15 AM GMT

I actually define X,Y, and Z in my code cody.

    of     1