of     1   

TsunaSenpai
#219247644Monday, June 19, 2017 7:44 PM GMT

how do i find the center of the model of parts
TsunaSenpai
#219248556Monday, June 19, 2017 7:58 PM GMT

bump
TsunaSenpai
#219249484Monday, June 19, 2017 8:13 PM GMT

bump
TsunaSenpai
#219249819Monday, June 19, 2017 8:18 PM GMT

bump
dqxs
#219249934Monday, June 19, 2017 8:20 PM GMT

Impossible I think.
TsunaSenpai
#219250483Monday, June 19, 2017 8:29 PM GMT

nothing is impossible >:3
dqxs
#219250644Monday, June 19, 2017 8:31 PM GMT

I'm not going to tell you, since you need to learn. You'll need to make a for i v in pairs of the model you want to do, add them to a table, then, once you're done doing that, you'll need the amount of bricks of the object and divide it by 2, and the last number will be the middle brick. Table/2 = 24, so the 24th brick it's the middle brick.
TsunaSenpai
#219254147Monday, June 19, 2017 9:20 PM GMT

obj = {} for i,v in pairs(script.Parent:GetChildren()) do if v:IsA("BasePart") then table.insert(obj,v) middlebrick = end end middlebrick = #obj/2
TsunaSenpai
#219254172Monday, June 19, 2017 9:21 PM GMT

obj = {} for i,v in pairs(script.Parent:GetChildren()) do if v:IsA("BasePart") then table.insert(obj,v) end end middlebrick = #obj/2
ITBV
#219254719Monday, June 19, 2017 9:29 PM GMT

model:GetModelCFrame() It is deprecated, but it seems to work - probably best to find another method.

    of     1