How would I go about updating/setting information inside a dictionary using profile service. I have everything mapped out already but I have no Idea how to update anything inside the dictionary.
Module Script:
local Data_Template = {
Defaults = {
Cash = 25,
Name = 0,
Rank = 'F-',
Spins = 10,
} ,
Inventory = {} ,
}
Basically what im trying to do is update the information inside of “Defaults” such as cash but I have no idea how to do it. I cant find anything on the github on how I can do this.