How to get middle position of table with positions

Hello, i’m wondering how i could gradually get the middle of some vectors.
image
And this would output the middle of all these.
so, one position which is the middle of all of them.
image

1 Like

local k = Vector3.new(0,0,0)

for i,v in pairs(Table) do
k += v
end

local centerPos = k/#Table

1 Like