Can Tween info be list

Hey guys, Can TweenObjects in Tween Info be a list?

oh and btw heres my script

local TweenList = {NewHitbox, NewHitbox.a, NewHitbox.b, NewHitbox.c, NewHitbox.d, NewHitbox.e, NewHitbox.f, NewHitbox.g, NewHitbox.h}
			
TweenService:Create(
		TweenList,
		TweenInfo.new(1),
		{Position = (char.HumanoidRootPart.CFrame * CFrame.new(0,0,-100).Position)}):play()

no

local TweenList = {NewHitbox, NewHitbox.a, NewHitbox.b, NewHitbox.c, NewHitbox.d, NewHitbox.e, NewHitbox.f, NewHitbox.g, NewHitbox.h}
			
for i,v in pairs(TweenList) do 
TweenService:Create(
		v,
		TweenInfo.new(1),
		{Position = (char.HumanoidRootPart.CFrame * CFrame.new(0,0,-100).Position)}):Play()
end

now i got one more question. The whole script is a vfx that have a red ball (Hitbox) surronded by small Yellow balls (Hitbox.a,b,c etc) the Yellow balls suppose to go along with the red ball, but now they all zoomed into the redball
What should i do?