Hello guys, im trying to make a shop system and i need to change the value of a dictonary to tell if the item has been sold. The value inside the dictonary should be N if not sold and Y if sold. If they buy the item i want to change the N to Y but I’m having trouble doing this. How do i change the value of a dictonary?
example:
local Items = {
["1"] = "N"
["2"] = "N"
}
--how to change N to Y?