roblox datastore limtis code example
Example: Roblox DataStore
local DataStoreService = game:GetService("DataStoreService")
DataStore = DataStoreService:GetDataStore('DataStore')
local RunService = game:GetService("RunService")
game.Players.PlayerAdded:Connect(function(player)
local leaderstats = Instance.new("Folder")
leaderstats.Name = "leaderstats"
leaderstats.Parent = player
local stage = Instance.new("IntValue")
stage.Name = "Stage"
stage.Value = DataStore:GetAsync(player.UserId) or 1
stage.Parent = leaderstats
end)
game.Players.PlayerRemoving:Connect(function(player)
local stage = player.leaderstats:WaitForChild("Stage")
warn("Stage Value Changed")
DataStore:SetAsync(player.UserId, stage.Value)
print("Saved ".. stage.Value .. " Stage For " .. player.Name)
end)
game:BindToClose(function()
if RunService:IsStudio() then
wait(7)
end
end)