📜  Humanoid.Running - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:59.345000             🧑  作者: Mango

代码示例1
game.Workspace.Player.Humanoid.Running:Connect(function(speed)
    if speed > 0 then
        print("Player is running")
    else
        print("Player has stopped")
    end
end)