I have recently taken up Datastoring and am capable of storing IntValues using a code similar to the one below:
However, I am incapable of storing StringValues and was wondering if anyone could potentially assist me? Thank you in advance.
local Data = {"Race"}
local DS=game:GetService("DataStoreService"):GetDataStore("DataSavingV.0")
game.Players.PlayerAdded:connect(function(p)
local FolderStore = Instance.new("Folder",p)
FolderStore.Name = "SavedData"
local RaceVal = Instance.new("StringValue",p.SavedData)
RaceVal.Name="Race"
RaceVal.Value = "nil"
for k,v in pairs(Data) do
RaceVal.Value = DS:GetAsync(p.userId.."_"..v)
coroutine.wrap(function() while wait(1) do
DS:SetAsync(p.userId.."_"..v,RaceVal.Value)end end)() --Update
end
end) |