How to rename parts in order

How do I rename parts in order

One small issue I renamed them, but not in correct order.

-- 
for i,v in ipairs(game.Workspace.OwnerCurrency.Droppers:GetChildren()) do
	if v.Name:match(stringg) then
		v.Name = "Dropper"..i
	end
end

This what happens when I’ve put in the script

Droppers
You see they not in order, even though I’ve used Ipairs, but it seems I’m missing something.

Please help me with this thing.

What is the correct order? You never specify it in your loop so it won’t know. Also, Roblox alphabetically orders objects based on their name, so that could be affecting it too.

I don’t think that’s possible. Roblox ordered like that. 1-10 for example. It’s always the first number that counts

Roblox lists things in the explorer in alphabetical order. You can’t change that.

1 Like