Heartbeat (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
Fix
>Tenal
No edit summary
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<onlyinclude>{{Event|name = Heartbeat
<onlyinclude>{{Event|name = Heartbeat
|arguments = [[Float]] ''Seconds''
|arguments = [[double]] <var>step</var>
|description = This event fires every frame in which Lua is ran. The ''seconds'' argument tells you how much time has passed between frames. This is usually 1/30th of a second.
|description = This event fires every frame in which Lua is ran. The <var>step</var> argument tells you how much time has passed between frames. This is usually around 1/30th of a second.
|object = RunService
|object = RunService
}}</onlyinclude>
}}</onlyinclude>
Line 10: Line 10:


{{code and output|code=
{{code and output|code=
local service = game:GetService("RunService")
local service = game:GetService('RunService')
local variable2 = 5
local variable2 = 5
wait(5)
wait(5)
Line 16: Line 16:
    if variable2 > 0 then
    if variable2 > 0 then
        variable2 = variable2 - 1
        variable2 = variable2 - 1
        print("The function returns: "..variable1)
        print("The function returned: "..variable1)
    end
    end
end)
end)


|output=
|output=
The function returns: 0.033333335071802
The function returned: 0.033333335071802
The function returns: 0.033333335071802
The function returned: 0.033333335071802
The function returns: 0.033333335071802
The function returned: 0.033333335071802
The function returns: 0.033333335071802
The function returned: 0.033333335071802
The function returns: 0.033333335071802
The function returned: 0.033333335071802
 
}}
}}
[[Category:Events]]

Latest 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