SetMinutesAfterMidnight (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator
example
>ArceusInator
example
(No difference)

Revision as of 04:23, 30 December 2010

SetMinutesAfterMidnight( number minutes )
Returns nil
Description: Sets the amount of minutes that have passed after midnight.
Member of: Lighting









Example
game.Lighting:SetMinutesAfterMidnight( 840 )

-- Would essentialy be the same as

game.Lighting.TimeOfDay = "14:00:00"

-- Because

print( 840 / 60 ) --> 14

-- Understand?