v = game.Part x = v.Name
1 | { |
2 | [ tostring (x) ] = Workspace.Monsters [ "A1-A2" ] [ tostring (x) ] |
3 | } |
I need it to become a table..
Assuming you have the part in workspace, you can use either of these to make a reference to it:
1 | local v = workspace.Part |
2 | -- OR |
3 | local v = game.Workspace.Part |
And no need to use the tostring() function on x, as it is already associated with a string(.Name)
1 | local v = workspace.Part |
2 | local x = v.Name |
3 |
4 | local tab = { |
5 | [ x ] = workspace.Monsters [ "A1-A2" ] [ x ] |
6 | } |