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
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.
Katrist
(Katrist)
August 21, 2023, 6:48pm
#2
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.
Tubbes1
(KarilbolCoolCold)
August 21, 2023, 9:00pm
#3
I don’t think that’s possible. Roblox ordered like that. 1-10 for example. It’s always the first number that counts
batteryday
(batteryday)
August 21, 2023, 9:12pm
#4
Roblox lists things in the explorer in alphabetical order. You can’t change that.
1 Like