Heartbeat (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Builder1010101
Just fixed the output, since JulienDethurens changed the "code" part from "returns" to "returned".
>Tenal
No edit summary
Line 27: Line 27:
The function returned: 0.033333335071802
The function returned: 0.033333335071802
}}
}}
[[Category:Events]]

Revision as of 03:30, 7 February 2012

Heartbeat ( double step )
Description This event fires every frame in which Lua is ran. The step argument tells you how much time has passed between frames. This is usually around 1/30th of a second.
Member of: RunService


The following code would be put in a Script. The script can be placed in the Workspace.

local service = game:GetService('RunService')
local variable2 = 5
wait(5)
service.Heartbeat:connect(function(variable1)
    if variable2 > 0 then
        variable2 = variable2 - 1
        print("The function returned: "..variable1)
    end
end)

The function returned: 0.033333335071802 The function returned: 0.033333335071802 The function returned: 0.033333335071802 The function returned: 0.033333335071802

The function returned: 0.033333335071802