I'm trying to get the variables name from a table and apply the value of that variable to a table with the same variables name.
1 | local table 1 = { |
2 | value = CFrame.new( 0 , 1 , 0 ) --trying to change this value to table2's value |
3 | } |
4 |
5 | local table 2 = { |
6 | value = CFrame.new( 0 , 2 , 0 ) |
7 | } |