Rofld
|
  |
| Joined: 13 Apr 2011 |
| Total Posts: 397 |
|
|
| 29 Jul 2011 09:47 AM |
I was just testing my mad skillz, when a error came up ! I want this script to tell the time in the output. Update it every second. Nothing comes up in the output.
time = 0
while true do wait(1) time = time + 1 print 'time' end |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 09:55 AM |
No quotes for a variable.
time = 0
while true do wait(1) time = time + 1 print(time) end |
|
|
| Report Abuse |
|
|
Rofld
|
  |
| Joined: 13 Apr 2011 |
| Total Posts: 397 |
|
|
| 29 Jul 2011 10:00 AM |
| It just says time and time and time in the output. |
|
|
| Report Abuse |
|
|
Rofld
|
  |
| Joined: 13 Apr 2011 |
| Total Posts: 397 |
|
|
| 29 Jul 2011 10:01 AM |
| Oh thanks I didnt see your reply before I made that post. I'll see if it works. |
|
|
| Report Abuse |
|
|
| |
|