|
| 24 Nov 2012 08:35 PM |
| Like if i wanted a bunch of IntValues with name "a","b","c" and so on. |
|
|
| Report Abuse |
|
|
| |
|
1Topcop
|
  |
| Joined: 09 Jun 2009 |
| Total Posts: 6635 |
|
|
| 24 Nov 2012 08:48 PM |
Letters = {"A","B","C","D","ETC"} wrap = 0 wraps = 1 for n,o in pairs(Workspace.IntValueModel:GetChildren())do wrap = wrap+1 if(wrap>#Letters)then wrap = 1 wraps = wraps+1 end o.Name = Letters[wrap]..wraps end |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2012 09:36 PM |
| Wasn't exactly what I was looking for, but thank you, I got it now. |
|
|
| Report Abuse |
|
|
nrscsy
|
  |
| Joined: 09 Nov 2012 |
| Total Posts: 465 |
|
|
| 24 Nov 2012 09:41 PM |
| For a huge list, simply use tostring() and use a basic numeric succession formula to name the values. |
|
|
| Report Abuse |
|
|