****PLAYER IS NOT A VALID MEMBER OF DATAMODEL
local DataStore = game: GetService("DataStoreService") local ds = DataStore:GetDataStore("CashSaveSystem")
game.Players.PlayerAdded:connect(function(player) local leader = Instance.new("Folder",player) leader. Name = "leaderstats" local Cash = Instance.new("IntValue", leader) Cash.Name = "Cash" Cash.Value = ds:GetAsync(player.UserId) or 0 Cash.Changed:connect(function() ds:SetAsync(player.UserId, Cash.Value)
end)
end)
game.Player.PlayerRemoving:connect(function(player) ds:SetAsync(player.UserId, player.leaderstats.Cash.Value) end)
In your code snippet, you made a spelling mistake.
game.Player.PlayerRemoving:connect(function(player) ds:SetAsync(player.UserId, player.leaderstats.Cash.Value) end)
The reason why it says Player is not a valid member of data model is because there's no service called Player. It's Players.
game.Players.PlayerRemoving:connect(function(player) ds:SetAsync(player.UserId, player.leaderstats.Cash.Value) end)
Also, as a side note unrelated to your issue, you should use :Connect instead of :connect :)