How do I save player's data?
Hello, so basically i'am trying to make this script save my player's stats when they logoff and load then when they login. The script is just not working, no idea why, was reading the article "Saving Player Data" in roblox wiki but my current knowledge of lua isn't good enough to let me adjust that script there to the one i have...
No idea what the problem is but here is the script:
001 | CashStore = game:GetService( "DataStoreService" ):GetDataStore( "DataStore" ) |
002 | local loadedstats = false |
003 | function PlayerEntered(player) |
004 | repeat wait() until player.Character |
005 | repeat wait() until player.Character.Stats |
006 | local stats = player.Character:WaitForChild( "Stats" ) |
007 | local goldnew = Instance.new( "IntValue" ) |
008 | goldnew.Parent = player.Character.Stats |
010 | goldnew.Name = "Gold" |
011 | local levelnew = Instance.new( "IntValue" ) |
012 | levelnew.Name = "Level" |
013 | levelnew.Parent = player.Character.Stats |
015 | local xpnew = Instance.new( "IntValue" ) |
017 | xpnew.Parent = player.Character.Stats |
019 | local constnew = Instance.new( "IntValue" ) |
020 | constnew.Name = "Constitution" |
021 | constnew.Parent = player.Character.Stats |
023 | local xptlvnew = Instance.new( "IntValue" ) |
024 | xptlvnew.Name = "Xptlv" |
025 | xptlvnew.Parent = player.Character.Stats |
026 | xptlvnew.Value = "70" |
027 | local skillpnew = Instance.new( "IntValue" ) |
028 | skillpnew.Name = "SkillPoints" |
029 | skillpnew.Parent = player.Character.Stats |
030 | skillpnew.Value = "0" |
031 | local hp = player.Character.Humanoid:WaitForChild( "Health" ) |
032 | local maxhp = player.Character.Humanoid:WaitForChild( "MaxHealth" ) |
033 | local gold = stats:WaitForChild( "Gold" ) |
034 | local level = stats:WaitForChild( "Level" ) |
035 | local xp = stats:WaitForChild( "Xp" ) |
036 | local const = stats:WaitForChild( "Constitution" ) |
037 | local xptlv = stats:WaitForChild( "Xptlv" ) |
038 | local skillp = stats:WaitForChild( "SkillPoints" ) |
042 | if CashStore:GetAsync( "Gold_" ..player.Name) ~ = nil then |
043 | gold.Value = CashStore:GetAsync( "Gold_" ..player.Name) |
047 | if CashStore:GetAsync( "Level_" ..player.Name) ~ = nil then |
048 | level.Value = CashStore:GetAsync( "Level_" ..player.Name) |
052 | if CashStore:GetAsync( "Xp_" ..player.Name) ~ = nil then |
053 | xp.Value = CashStore:GetAsync( "Xp_" ..player.Name) |
057 | if CashStore:GetAsync( "Const_" ..player.Name) ~ = nil then |
058 | const.Value = CashStore:GetAsync( "Const_" ..player.Name) |
062 | if CashStore:GetAsync( "Xptlv_" ..player.Name) ~ = nil then |
063 | xptlv.Value = CashStore:GetAsync( "Xptlv_" ..player.Name) |
067 | if CashStore:GetAsync( "SkillP_" ..player.Name) ~ = nil then |
068 | skillp.Value = CashStore:GetAsync( "SkillP_" ..player.Name) |
072 | if CashStore:GetAsync( "Health_" ..player.Name) ~ = nil then |
073 | hp.Value = CashStore:GetAsync( "Health_" ..player.Name) |
077 | if CashStore:GetAsync( "MaxHealth_" ..player.Name) ~ = nil then |
078 | maxhp.Value = CashStore:GetAsync( "MaxHealth_" ..player.Name) |
083 | player.Character.IsLoading.Value = false |
086 | function PlayerLeaving(player) |
087 | if loadedstats = = true then |
088 | local stats = player.Character:WaitForChild( "Stats" ) |
089 | local hp = player.Character.Humanoid:WaitForChild( "Health" ) |
090 | local maxhp = player.Character.Humanoid:WaitForChild( "MaxHealth" ) |
091 | local gold = stats:WaitForChild( "Gold" ) |
092 | local level = stats:WaitForChild( "Level" ) |
093 | local xp = stats:WaitForChild( "Xp" ) |
094 | local const = stats:WaitForChild( "Constitution" ) |
095 | local xptlv = stats:WaitForChild( "Xptlv" ) |
096 | local skillp = stats:WaitForChild( "SkillPoints" ) |
097 | CashStore:SetAsync( "Gold_" ..player.Name, gold.Value) |
098 | CashStore:SetAsync( "Level_" ..player.Name, level.Value) |
099 | CashStore:SetAsync( "Xp_" ..player.Name, xp.Value) |
100 | CashStore:SetAsync( "Const_" ..player.Name, const.Value) |
101 | CashStore:SetAsync( "Xptlv_" ..player.Name, xptlv.Value) |
102 | CashStore:SetAsync( "SkillP_" ..player.Name, skillp.Value) |
103 | CashStore:SetAsync( "Health_" ..player.Name, hp) |
104 | CashStore:SetAsync( "MaxHealth_" ..player.Name, maxhp) |
108 | game.Players.PlayerAdded:connect(PlayerEntered) |
109 | game.Players.PlayerRemoving:connect(PlayerLeaving) |
Feel free to ask anything if there is something unclear and thank you in advance.