So I have this
1
2
3
2
3
local temp = {} -- I want this to store a temporary storage value eq = {value=x} -- There x is a number
But before I set it, I want to save it to temp.
1
2
2
table.insert(temp,eq.value) eq.value = y
The problem comes here:
I want to set the original value from temp to eq.value when pressing 2nd Serveraction
This is only example code of what my problem is.
-TheD