Jumping (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Example added
>Camoy
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{|
<onlyinclude>{{Event
|<onlyinclude>{{Event|name = Jumping
|name = Jumping
|arguments = [[Bool]] ''active''
|arguments = [[Bool]] ''active''
|description = Fired when player is jumping.
|description = Fired when player is jumping.
|object = [[Humanoid]]
|object = Humanoid
|}}</onlyinclude>
}}</onlyinclude>
|}
 
{{clear floats}}
 
{{Example|<pre>
{{Example|<pre>
game.Workspace.Player.Humanoid.Jumping:connect(function()
game.Workspace.Player.Humanoid.Jumping:connect(function()
Line 11: Line 13:
end)
end)
</pre>}}
</pre>}}
[[Category:Events]]

Latest revision as of 15:47, 29 January 2011

Jumping ( Bool active )
Description Fired when player is jumping.
Member of: Humanoid


Example
game.Workspace.Player.Humanoid.Jumping:connect(function()
  print("Jumping")
end)