Tools are sorted by the order they arrive to the backpack, then manually if chosen. So your best option would be to remove all tools then instantly parent them back in the order you want.
For example, alphabetical order:
01 | local tools = player.Backpack:GetChildren() |
02 | for _,v in ipairs (player.Character:GetChildren()) do |
03 | if v.ClassName = = "Tool" then |
07 | table.sort(tools, function (a,b) return a.Name<b.Name end ) |
08 | for _,t in ipairs (tools) do t.Parent = nil end |
10 | for _,t in ipairs (tools) do t.Parent = player.Backpack end |
For anything better you gotta make a custom backpack