How would I tween 24 part at the same time there not in the same position but they all have to do the same thing can someone help me?
You can put all the parts in a folder and then access that with a for loop that tweens each one.
You can also put them all in a model, and then pivot that. You won’t be able to use tween, but you could lerp.
local origin = model:GetPivot()
local goal = Vector3.new(0,0,0)
for i = 1,20 do
wait(.01)
model:PivotTo(CFrame.new(origin:lerp(goal,i/20)))
end