local dictionary = {[1] = "13"}
print(tonumber(dictionary[1]) - 5) -- 8
Is this what you mean by subtract a dictionary’s value?
local dictionary = {[1] = "13"}
print(tonumber(dictionary[1]) - 5) -- 8
Is this what you mean by subtract a dictionary’s value?