| |
|
789cab
|
  |
| Joined: 13 Jul 2009 |
| Total Posts: 3145 |
|
|
| 14 Jul 2013 08:33 AM |
| Hmm, don't know. Just find a script in free models and tinker with it. Then after you learn its code make your own. |
|
|
| Report Abuse |
|
|
Hergest
|
  |
| Joined: 17 May 2011 |
| Total Posts: 309 |
|
|
| 14 Jul 2013 08:41 AM |
| A timer that starts when the first player is added or something. |
|
|
| Report Abuse |
|
|
sam8985
|
  |
| Joined: 12 Nov 2011 |
| Total Posts: 582 |
|
|
| 14 Jul 2013 09:02 AM |
Simply have this script: Seconds = 0 Minutes = 0 Hours = 0 while true do wait(1) Seconds = Seconds + 1 if Seconds == 60 then Seconds = 0 Minutes = Minutes + 1 if Minutes == 60 then Hours = Hours + 1 end end end --If you wanted to do anything else with this code than record it, you would have to use global variables or coroutines.
|
|
|
| Report Abuse |
|
|
sam8985
|
  |
| Joined: 12 Nov 2011 |
| Total Posts: 582 |
|
|
| 14 Jul 2013 09:03 AM |
Oh... Fix: Seconds = 0 Minutes = 0 Hours = 0 while true do wait(1) Seconds = Seconds + 1 if Seconds == 60 then Seconds = 0 Minutes = Minutes + 1 if Minutes == 60 then Hours = Hours + 1 Minutes = 0 end end end
|
|
|
| Report Abuse |
|
|