Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

[Solved] How would I store configurations using datastore?

Asked by 6 years ago
Edited 6 years ago

So I am making a game where players make their own suit & can eventually build plating on it. But I am having trouble coming up with a way to store the player's 'plating configuration' since each plate has to have a 'vector 3' sort of value as well as which part it is attached to & what material it is. how would I store these five different values easily in a table & then store it with datastore?

here is some code I was experimenting with but I am still having trouble:

01local DSS = game:GetService("DataStoreService")
02local PltngConfig = DSS:GetDataStore("PlatingConfig")
03 
04game.Players.PlayerAdded:connect(function(player)
05    if PltngConfig:GetAsync(player.userid) ~= nil then
06        PlatingConfig = PltngConfig:GetAsync(player.userid)
07    else
08        --code to make new data will go here
09    end
10end)
11 
12 
13game.Players.PlayerRemoving:connect(function(player)
14    PltngConfig:SetAsync(player.userid, PlatingConfig)
15 
16end)

1 answer

Log in to vote
1
Answered by 6 years ago

Nvm, I just found out how to make tables within tables which allows me to save 5 values per key.

Ad

Answer this question