|
| 19 Dec 2013 06:24 PM |
while true do local x = 5 -----wait 5 second before change :) Game.lighting.TimeOfDay = ("15:00:00") --------- Changes time :) wait (x) Game.lighting.TimeOfDay = ("16:00:00") wait (x) Game.lighting.TimeOfDay = ("17:00:00") wait (x) Game.lighting.TimeOfDay = ("18:00:00")
time set wooooooo
i cut off the parts so they dont copy |
|
|
| Report Abuse |
|
|
|
| 19 Dec 2013 06:27 PM |
while true do local x = 5 -----wait 5 second before change :) Game.lighting.TimeOfDay = ("15:00:00") --------- Changes time :) wait (x) end |
|
|
| Report Abuse |
|
|
rny
|
  |
| Joined: 26 Jul 2009 |
| Total Posts: 5079 |
|
|
| 19 Dec 2013 06:48 PM |
time=15 while wait(5) do Game.lighting.TimeOfDay = (time .. ":00:00") time=time+1 end
|
|
|
| Report Abuse |
|
|
|
| 19 Dec 2013 07:17 PM |
@ people lording the fact that they made more advanced scripts..seriously? good job on your first script,but I would take one of their suggestions(probly the last one) so it will continue,and will never end |
|
|
| Report Abuse |
|
|
|
| 19 Dec 2013 07:18 PM |
oh,add while wait(x) do before the guy above me's script |
|
|
| Report Abuse |
|
|
|
| 19 Dec 2013 07:18 PM |
| im posting too much....anyway,point is.. good job! |
|
|
| Report Abuse |
|
|
|
| 19 Dec 2013 07:21 PM |
| Oops, forgot he wasn't doing +1 for each. :P |
|
|
| Report Abuse |
|
|
rny
|
  |
| Joined: 26 Jul 2009 |
| Total Posts: 5079 |
|
|
| 19 Dec 2013 08:00 PM |
time=15 while wait(5) do Game.lighting.TimeOfDay = (tostring(time) .. ":00:00") time=time+1 end
fixed it :P |
|
|
| Report Abuse |
|
|