RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"A leaderboard that has "wins" and "minutes" you can only win everyday"
-- server script (ServerScriptService) local Players = game:GetService("Players") local function onPlayerAdded(player) local stats = Instance.new("Folder") stats.Name = "leaderstats" stats.Parent = player local wins = Instance.new("IntValue") wins.Name = "Wins" wins.Parent = stats local minutes = Instance.new("IntValue") minutes.Name = "Minutes" minutes.Parent = stats end Players.PlayerAdded:Connect(onPlayerAdded) local function updateMinutes() for _, player in ipairs(Players:GetPlayers()) do if player.leaderstats then player.leaderstats.Minutes.Value = player.leaderstats.Minutes.Value + 1 end end wait(60) end while true do local currentDate = os.date("*t") if currentDate.hour == 0 and currentDate.min == 0 then for _, player in ipairs(Players:GetPlayers()) do if player.leaderstats then player.leaderstats.Wins.Value = 0 end end wait(60) else updateMinutes() end end