Time Leaderboard Script Roblox Studio
Time Leaderboard Script Roblox Studio
video: Coming Soon
steps:
Go to ServerScriptService in the explorer
add a script into ServerScriptService (Not Local Script!!!)
Add in the script our script.
Try it out!!
Script:
game.Players.PlayerAdded:Connect(function(player)
local leaderstats = Instance.new("Folder")
leaderstats.Name = "leaderstats"
leaderstats.Parent = player --CB
local nameStat = Instance.new("StringValue")
nameStat.Name = "Time"
nameStat.Value = 0
nameStat.Parent = leaderstats
while true do --CB
wait(1)
nameStat.Value += 1
end
end)
-- script made by Content Bakery