Hi. I was wondering how the “for” loop cycles through the children of a part. How does it know which one to print first. Is there a simple way to make it always print Node1, Node2, Node3…
local Model = workspace.Model
for Index,Waypoint in pairs(Model:GetChildren()) do
print(Waypoint)
end