Hello, i’m wondering how i could gradually get the middle of some vectors.
And this would output the middle of all these.
so, one position which is the middle of all of them.
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