of     1   

Gladii
#140902825Sunday, July 20, 2014 1:37 AM GMT

Is one wait(1) equal to one second? I know this maybe be a silly queston, I'm a noob at scripting. If that is true is wait(3600) equal to 1 hour?
Ripull
#140902864Sunday, July 20, 2014 1:37 AM GMT

Yes, it is a second.
128GB
#140903514Sunday, July 20, 2014 1:44 AM GMT

Well, no. But its close enough. local laps = {} for _ = 1, 100 do x = wait(1) table.insert(laps, x) end local total = 0 for _, n in pairs (laps) do total = total + n end print("Average wait time: " .. tostring(total / 100)) print("Fastest wait time: " .. tostring(math.min(unpack(laps)))) Average wait time: 1.0057205884125 Fastest wait time: 1.0018424154567
Ripull
#140903809Sunday, July 20, 2014 1:47 AM GMT

Of course you can complicate it like that 128GB, but he is just a noobie.
128GB
#140903907Sunday, July 20, 2014 1:48 AM GMT

Its not complicated. Its the right answer.
Ripull
#140904035Sunday, July 20, 2014 1:49 AM GMT

Oh you.
128GB
#140904135Sunday, July 20, 2014 1:50 AM GMT

It also means 3600 waits more like 3620.59411829 seconds
LegendaryAccount
#140906394Sunday, July 20, 2014 2:14 AM GMT

so it would be 20 seconds longer?
Lacryma
#140906585Sunday, July 20, 2014 2:16 AM GMT

no it just adds up legend

    of     1