local dataStore = game:GetService("DataStoreService"):GetDataStore("randommeusumtime") game.Players.PlayerAdded:Connect(function(plr) local leaderstats = Instance.new("Folder") leaderstats.Name = "leaderstats" leaderstats.Parent = plr local points = Instance.new("IntValue") points.Name = "Time Spent" points.Value = dataStore:GetAsync(plr.UserId) points.Parent = leaderstats while true do wait(1) points.Value = points.Value + 1 end end) game:BindToClose(function(plr) dataStore:SetAsync(plr.UserId, plr.leaderstats["Time Spent"].Value) end)
Tried a million times now, save scripts never work. HELP PLZ LOL???