#Soritng :GetChildren()
1 messages · Page 1 of 1 (latest)
Developer Forum | Roblox
Just to add to this, a name sort like this should suffice table.sort(plotTable, function(a,b) local name1 = tonumber(a.Name:match("%d+")) local name2 = tonumber(b.Name:match("%d+")) return name1 < name2 end) Where plotTable is the name of the varaible that contains a table of all the children in the Plots folder This is a simple ascending ...
table.sort(t1,function(a,b)
return a.Name < b.Name
end)
Crys in 8 different languages
Thanks for your reply NomNom, and for your enlightenment
No worries bro :)