PlatformStanding (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator
page for PlatformStanding
>Blocco
No edit summary
Line 1: Line 1:
{|
{|
|<onlyinclude>{{Event|name = PlatformStanding
|<onlyinclude>{{Event|name = PlatformStanding
|arguments = [[Bool]] ''is platformstanding''
|arguments = [[Bool]] ''isPlatformStanding''
|description = Fired when the humanoid's PlatformStand property is changed.
|description = Fired when the humanoid's PlatformStand property is changed.
|object = Humanoid
|object = Humanoid

Revision as of 18:39, 31 December 2010

PlatformStanding ( Bool isPlatformStanding )
Description Fired when the humanoid's PlatformStand property is changed.
Member of: Humanoid
Example
function onPlatformStanding( isPlatformStanding )
   if isPlatformStanding then
      print "The player is PlatformStanding"
   else
      print "The player is not PlatformStanding"
   end
end

humanoid = game.Players.LocalPlayer.Character.Humanoid

humanoid.PlatformStanding:connect( onPlatformStanding )



humanoid.PlatformStand = true --> The player is PlatformStanding