Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I create a Server Age script using this?

Asked by 6 years ago

I'm trying to work out the Days in a Server Age script. Any ideas?

01while true do
02 wait()
03 local seconds = math.floor(game.Workspace.DistributedGameTime)
04 local minutes = math.floor(game.Workspace.DistributedGameTime / 60)
05 local hours = math.floor(game.Workspace.DistributedGameTime / 60 / 60)
06 local days = math.floor()
07 local seconds = seconds - (minutes * 60)
08 local minutes = minutes - (hours * 60)
09 if hours < 1 then
10  if minutes < 1 then
11   script.Parent.Text = seconds.."second(s)"
12  else
13   script.Parent.Text = minutes.." minute(s) "..seconds.." second(s)"
14 
15if hours <24 then
View all 21 lines...

2 answers

Log in to vote
3
Answered by 6 years ago
01local seconds = 0
02while true do
03    wait(1)
04    seconds = seconds + 1
05    local minutes = seconds / 60
06    minutes = math.floor(minutes)
07    local hours = minutes / 60
08    hours = math.floor(hours)
09    local days = hours / 24
10    days = math.floor(days)
11    local daysAsText = tostring(days)
12    print("This server has been online for "..daysAsText.." days.")
13end
Ad
Log in to vote
0
Answered by 6 years ago

use this model - https://www.roblox.com/library/1740290022/Server-Age

0
I need one that has days on it CarlPlandog 20 — 6y

Answer this question