-
Hey, I’m trying to move one variable from one dictionary to another.
-
Move the Value to from EmptyTables to TakenTables.
EmptyTables = {
Value = "Value"
}
TakenTables = {
}
Theres the example code.
Thanks!
Hey, I’m trying to move one variable from one dictionary to another.
Move the Value to from EmptyTables to TakenTables.
EmptyTables = {
Value = "Value"
}
TakenTables = {
}
Theres the example code.
Thanks!
EmptyTables = {
Value = "Value"
}
TakenTables = {
}
TakenTables.Value = EmptyTables.Value
How to remove it from emptyTables?
EmptyTables.Value = nil
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.