Howdy!
I know this site is not meant to ask someone to write a script for someone, but i hope this is a one time question.
I got a model with over 60 Parts inside it, and all of them are named 'Part'
But for my CFrame:lerp i need to move the object from Part 1 to 2, to 3, to 4.
And i've got a script for that, no worries. But how can i quickly number all parts? And, also in the sequence
So, Part 1 = the begin, Part 2 is next to, Part 3 next to it.
Only thing i could write was a script which sorts them, but Part 1 could be like Part 30, instead of Part 1, if you get what i mean.
Does anyone knows a script, or can lead me into the good directions?
You could get a plugin for 120 robux i forgot the name but it is something like 'InCommand' or otherwise there is no other way that will do it fast, it will just take a while
local modelParts = model:GetChildren() for i = 1, #modelParts do modelParts[i].Name = i end