Heartbeat (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26 Fix |
>JulienDethurens No edit summary |
||
Line 1: | Line 1: | ||
<onlyinclude>{{Event|name = Heartbeat | <onlyinclude>{{Event|name = Heartbeat | ||
|arguments = [[ | |arguments = [[double]] <var>step</var> | ||
|description = This event fires every frame in which Lua is ran. The | |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( | 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 | print("The function returned: "..variable1) | ||
end | end | ||
end) | end) | ||
Line 26: | Line 26: | ||
The function returns: 0.033333335071802 | The function returns: 0.033333335071802 | ||
The function returns: 0.033333335071802 | The function returns: 0.033333335071802 | ||
}} | }} |
Revision as of 06:43, 26 January 2012
![]() | |
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.