Running (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Mindraker
No edit summary
 
>Camoy
No edit summary
 
(24 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{CatUp|Events}}
<onlyinclude>{{Event
|name = Running
|arguments = [[Float]] ''speed''
|description = Fired when player is running.
|object = Humanoid
}}</onlyinclude>


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


[[Category:Events]]
[[Category:Events]]

Latest revision as of 15:47, 29 January 2011

Running ( Float speed )
Description Fired when player is running.
Member of: Humanoid


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