For some reason this DataStore doesn’t save stats. I’m not a very experienced developer, I didn’t make it myself and have never actually tried to make a DataStore from scratch before, but I don’t see any problems with this script.
Here’s the ModuleScript:
local module = {}
local DatastoreService = game:GetService("DataStoreService")
local datastore = DatastoreService:GetDataStore("SmartDataStore")
local PlayersDatas = {}
function LoadData (player:Player,value)
if PlayersDatas[player.Name] and PlayersDatas[player.Name][value.Name] then
value.Value = PlayersDatas[player.Name][value.Name]
end
end
function AddTable (player: Player)
local sucess, data = pcall(function()
return datastore:GetAsync(player.UserId)
end)
if sucess and data then
PlayersDatas[player.Name] = data
end
end
function addDatastore (player: Player)
local SmartDatastore = Instance.new("Folder", player) SmartDatastore.Name = "SmartDatastore"
SmartDatastore.ChildAdded:Connect(function(child)
LoadData(player, child)
end)
end
function module.AddValue (player:Player, value,name, starterValue)
local SmartDatastore = player:WaitForChild("SmartDatastore")
local Value = Instance.new(value, SmartDatastore) Value.Name = name
if starterValue ~= nil then
Value.Value = starterValue
end
end
function saveDatastore (player: Player)
local SmartDatastore = player:WaitForChild("SmartDatastore")
local Data = {}
for _, value in pairs(SmartDatastore:GetChildren()) do
if value:IsA("ValueBase") then
Data[value.Name] = value.Value
end
end
datastore:SetAsync(player.UserId, Data)
end
game.Players.PlayerAdded:Connect(function(p)
AddTable(p)
addDatastore(p)
end)
game.Players.PlayerRemoving:Connect(saveDatastore)
return module
Well the .playeradded and removing in the modules will never work because in a module script for code to run it has to be ‘called’ and and roblox doesn’t go though and check if those functions to be used unless you have them already in function that has been called.
Also if you have two severscripts looking for if a player joins I don’t one of them would work. (this might not be true but, once i had a bug like this and the two .playeradded events were the problem.)
I believe the issue is you not doing game:BindToClose()
If you are the last player in a server or testing in studio, data may not save properly using .PlayerRemoving, instead you would need to use game:BindToClose which will call a function once the server is closing, here’s an example script:
game:BindToClose(function()
for _, Player in pairs(game:GetService("Players")) do
saveDatastore(Player)
end
end)
You should also try to use game:GetService(“Service”) as it is better to use.
If this doesn’t work, send any errors you are getting in console & make sure the module is in a ServerSided Instance (ServerStorage, ServerScriptService)
I changed the PlayerAdded and PlayerRemoving functions to where they’re now called from the ServerScript and tested them to make sure they work yet the data still isn’t saved next time I rejoin, but thank you for the suggestion! I’m sure that was one of the issues because you were right and they definitely were not working before