PlatformStanding (Event)
From Legacy Roblox Wiki
|
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