of     1   

burgly
Top 100 Poster
#208610Friday, October 26, 2007 10:48 PM GMT

is there a way, to use intvalue, to make a clock i made automatically change itself? (digital clock) like an if loop or whatever? -Bonito! To the world-
JangoFettt
#209625Saturday, October 27, 2007 10:38 AM GMT

you now the tv you can get in fernitur try muking around with that and see if it works
burgly
Top 100 Poster
#209750Saturday, October 27, 2007 1:03 PM GMT

not really helpfull -Bonito! To the world-
JangoFettt
#210001Saturday, October 27, 2007 2:47 PM GMT

i dotn really now how you could make a clock script but i now how to muck around with stuff
burgly
Top 100 Poster
#210500Saturday, October 27, 2007 7:14 PM GMT

still not helping! -Bonito! To the world-
PRG
#210509Saturday, October 27, 2007 7:18 PM GMT

a clock huh? i think theres one in are92's space cruise and are14's psp parks (both) ask them (are92 is more reliable and has helped me with scripts)
burgly
Top 100 Poster
#210794Saturday, October 27, 2007 10:00 PM GMT

ok
JangoFettt
#210838Saturday, October 27, 2007 10:30 PM GMT

yer do what he says
FlLLYwabblt
#74982585Wednesday, August 08, 2012 9:41 PM GMT

Just check free models. This is a really complex thing to do, I don't remember the exact method but there is a way to get the time in real life, of course you'll have to count for timezones. my siggy. http://www.roblox.com/The-Fading-Obby-place?id=43505551
nickbricknick464
#74982986Wednesday, August 08, 2012 9:45 PM GMT

This is most likely possible. I would investigate the game.Worskapce.DistributedGameTime property.
rayoma
#74991078Wednesday, August 08, 2012 11:05 PM GMT

If loop? Do you mean a recursive function? Anyways, try something like this :     function toDigital(seconds)         return tostring(math.floor(seconds/60))..":"..(seconds%60<​10 and "0" or "")..tostring(seconds%60);     end          local time=0;     local h=Instance.new("Hint",workspace);     while Wait(1) do         time=time+1;         h.Text=toDigital(time);     end
LordSymphonic
#74991146Wednesday, August 08, 2012 11:06 PM GMT

2007 :/  
kools
#74991445Wednesday, August 08, 2012 11:09 PM GMT

@LS, Agreed. When I saw someone suggesting to ask Are92, I was thinking, he's long gone. Then I looked at the date. How did this post get back up here? Quick! Keep it alive!

    of     1