Gets the current time.

Arguments

None.

Results

Example

Constantly print the current in-game time.

local ClockH, ClockM

	while true do
		ClockH, ClockM = ClockGet()
		TextPrintString("It is currently "..ClockH..":"..ClockM, 0, 1)
		Wait(0)
	end