Hi, I'm trying to make a moving wall made of lots of Unions. Lots. I used the for i,v in pairs and a for loop and it moves fine but each of the Unions go individually. Can anyone help?
for i,v in pairs (script.Parent:GetChildren()) do
if v:IsA("Union") then
for i = 1, 300 do
v.CFrame = v.CFrame - Vector3.new(0, 0, 0.2)
wait(0.001)
end
end
end
lesser dog's excitement knows no bounds |