of     1   

LewisAlKhalifa
#184082690Sunday, February 21, 2016 5:30 PM GMT

Like perhaps a script that will change the brick setting from SmoothPlastic to Neon at 1:00:00 in-game time? i giv u 1 tix
Kurokku
#184082953Sunday, February 21, 2016 5:33 PM GMT

function() if time = 1:00:00 then change brick color else --do nothing end (:
LewisAlKhalifa
#184083203Sunday, February 21, 2016 5:37 PM GMT

Thanks, as a reward, I will give you one tix
LewisAlKhalifa
#184083320Sunday, February 21, 2016 5:39 PM GMT

Wait, that doesnt work doe..
RaceForLast
#184099208Sunday, February 21, 2016 9:25 PM GMT

while wait() do if game.Lighting.TimeOfDay=="01:00:00" then workspace.Part.Material="Neon" end end
CWRA0444
#184099277Sunday, February 21, 2016 9:26 PM GMT

this is what you're looking for repeat wait() until game.Lighting.TimeOfDay == "1:00:00" part.Material = "Neon" ...thats why yellow makes me sad
DivinePheonix
#184099836Sunday, February 21, 2016 9:34 PM GMT

Use the Changed event instead of a loop. . .
LewisAlKhalifa
#184111926Monday, February 22, 2016 12:39 AM GMT

My gud friend CptBenge helped me you can chill
Wrathsong
#184112109Monday, February 22, 2016 12:42 AM GMT

what div said..
darthpyro
#184112192Monday, February 22, 2016 12:43 AM GMT

Does the time of day not typically change at a constant rate (i.e. it's going to call the changed event at the same rate as a loop)?

    of     1