I think it doesn't work because you didn't add an if statement asking if there was data. It wouldn't work because the player wouldn't have any data, so their cash would be equal to nil. Try this:
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
03 | local MyDataStore = DataStoreService:GetDataStore( 'MyDataStore' ) |
09 | game.Players.PlayerAdded:Connect( function (player) |
10 | local stats = Instance.new( "Folder" ) |
11 | stats.Name = 'leaderstats' |
14 | local cash = Instance.new( "NumberValue" ) |
20 | local success, errormessage = pcall ( function () |
21 | MyDataStore:GetAsync(player.UserId.. "-cash" ) |
37 | game.Players.PlayerRemoving:Connect( function (player) |
40 | local success, errormessage = pcall ( function () |
41 | MyDataStore:SetAsync(player.UserId.. "-cash" ,player.leaderstats.Cash.Value) |
If that doesn't work, then it means you haven't enabled API Services
in your game.