Jumping (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Gordonrox24
No edit summary
>Camoy
No edit summary
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{CatUp|Events}}
<onlyinclude>{{Event
{{stub}}
|name = Jumping
|arguments = [[Bool]] ''active''
|description = Fired when player is jumping.
|object = Humanoid
}}</onlyinclude>


{{clear floats}}
{{Example|<pre>
game.Workspace.Player.Humanoid.Jumping:connect(function()
  print("Jumping")
end)
</pre>}}


[[Category:Events]]
[[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)