of     1   

LegendaryAdmiral
#141164707Tuesday, July 22, 2014 2:45 PM GMT

Is there any way to use variables in a model/part name? So say I have part, and i=10, it would be named part10
cntkillme
#141164779Tuesday, July 22, 2014 2:46 PM GMT

getfenv()["part" .. i] = blah
LegendaryAdmiral
#141165115Tuesday, July 22, 2014 2:52 PM GMT

Thanks, but any way to do this with local variables? putting in front of it just gives an error
cntkillme
#141165178Tuesday, July 22, 2014 2:53 PM GMT

No, unless roblox gives us access to the debug table.
cntkillme
#141165221Tuesday, July 22, 2014 2:53 PM GMT

But you can do this: local stuff = {}; stuff["part" .. i] = blah; And you can do stuff["part10"] to access it
LegendaryAdmiral
#141165348Tuesday, July 22, 2014 2:55 PM GMT

thanks

    of     1