1 | game.Lighting.TimeOfDay.Changed:connect( function () |
2 | local Time = game.Lighting.TimeOfDay |
3 | if Time = = "18:00:00" then |
4 | print ( "ITS 18!" ) |
5 | elseif Time = = "6:00:00" then |
6 | print ( "ITS 6" ) |
7 | end |
8 | end ) |
What's Wrong with this script?
1 | game.Lighting.Changed:connect( function () |
2 | local time = game.Lighting:GetMinutesAfterMidnight() |
3 | if time = = 1080 then |
4 | print "It's 6 pm!" |
5 | elseif time = = 360 then |
6 | print "It's 6 am!" |
7 | end |
8 | end ) |
1 | game.Lighting.Changed:connect( function (property) |
2 | if property = = game.Lighting.TimeOfDay then |
3 | if game.Lighting.TimeOfDay = = "18:00:00" then |
4 | print ( "ITS 18!" ) |
5 | elseif game.Lighting.TimeOfDay = = "6:00:00" then |
6 | print ( "ITS 6" ) |
7 | end |
8 | end |
9 | end ) |
You dingus! you can't used the changed event on a specific property, it's meant for instances. Although it returns the property of the instance that was changed. so if we check if the property was TimeOfDay that changed, then we could successfully do the print.