How to move variables from one dictionary to another?

  1. Hey, I’m trying to move one variable from one dictionary to another.

  2. Move the Value to from EmptyTables to TakenTables.

EmptyTables = {
	Value = "Value"
}

TakenTables = {
}

Theres the example code.
Thanks!

1 Like
EmptyTables = {
	Value = "Value"
}

TakenTables = {
}

TakenTables.Value = EmptyTables.Value
2 Likes

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.