[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:
01 | local DSS = game:GetService( "DataStoreService" ) |
02 | local PltngConfig = DSS:GetDataStore( "PlatingConfig" ) |
04 | game.Players.PlayerAdded:connect( function (player) |
05 | if PltngConfig:GetAsync(player.userid) ~ = nil then |
06 | PlatingConfig = PltngConfig:GetAsync(player.userid) |
13 | game.Players.PlayerRemoving:connect( function (player) |
14 | PltngConfig:SetAsync(player.userid, PlatingConfig) |