MoveStateChanged (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>MrNicNac Fixed clumped event box |
>MrNicNac Fixed clumped event box |
(No difference)
|
Revision as of 22:31, 28 September 2011
![]() | |
Description | Fired when the SkateboardPlatform's Controlling Humanoid changes the force being used on the SkateboardPlatform. |
---|---|
Member of: | SkateboardPlatform |
Example
function onMoveStateChanged( newState, oldState ) print( "The SkateboardPlatform's oldState was " .. tostring( oldState ) ) print( "The SkateboardPlatform's newState is " .. tostring( newState ) ) end SkateboardPlatform.MoveStateChanged:connect( onMoveStateChanged )