How do I create a Server Age script using this?
I'm trying to work out the Days in a Server Age script. Any ideas?
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 ) |
11 | script.Parent.Text = seconds.. "second(s)" |
13 | script.Parent.Text = minutes.. " minute(s) " ..seconds.. " second(s)" |
20 | else script.Parent.Text = hours.. "hour(s), " ..minutes.. " minute(s), " ..seconds.. " second(s)" |