[Solved]Datastore - Change data inside a datastore where the data is inside a table. Help?
Asked by
6 years ago Edited 6 years ago
I have been stuck with this problem for about five hours or so...
First time I asked this question, I was incredible tired, that's why I wanna ask the question with a little more explanation of my problem.
Don't worry. I have deleted my first post. No spam. ^^
My problem is:
- I wanna get the data from a datastore and change something in it.
- The data that is stored is a table. I wanna change specified parts of the table.
Here is my code:
01 | local DataStore = game:GetService( "DataStoreService" ) |
02 | local DataList = DataStore:GetDataStore( "UserData" ) |
04 | function savedata(dataname, playerid, value) |
05 | DataStore:GetDataStore(dataname):SetAsync(playerid, value) |
21 | game:GetService( "Players" ).PlayerAdded:Connect( function (plr) |
23 | local Data = DataList:GetAsync(plr.UserId) |
28 | savedata( "UserData" , plr.UserId, Data) |
34 | local Data = DataList:GetAsync(plr.UserId) |
35 | savedata(Data.Xp, plr.UserId, 100 ) |
36 | savedata(Data [ "Xp" ] , plr.UserId, 100 ) |
I understand that I made some questions in my last post, and I want to answer them here.
Q. Do you want to change the data inside the "DefaultData" table?
A. No, I do not want to change the data inside the "DefaultData" table. I wanna change the data inside the table inside the "UserData" datastore.
Q. Do you want a way to change the data after its created
A. Yes, In a way, I want that. I want to get the data from the datastore, and change the data that I get from the datastore, in other words, save it with different information.
Q. Do you need help with getting the values inside the table?
A. No. I know how to get the values, but not how to change it.
Thanks in advance
~WaterFoox