Strafing (Event): Difference between revisions

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

Latest revision as of 15:46, 29 January 2011

Strafing ( Bool active )
Description Fired when player is strafing.
Member of: Humanoid


Example
game.Workspace.Player.Humanoid.Strafing:connect(function()
  print("Player is strafing")
end)