#how can i make it that you get 1+ time every second and also shows it on the leaderboard?

6 messages · Page 1 of 1 (latest)

gilded moat
#

@runic cave

#

Script In ServerscriptService > ||game.Players.PlayerAdded:Connect(function(player)
local leaderstats = Instance.new("Folder")
leaderstats.Name = "leaderstats"
leaderstats.Parent = player

local time = Instance.new("IntValue")
time.Name = "Time"
time.Value = 0
time.Parent = leaderstats

while player.Parent do
    wait(1)
    time.Value = time.Value + 1
end

end)||

gilded moat
runic cave
#

hmm

runic cave