About 523,000 results
Open links in new tab
  1. Beginner’s guide to Humanoids - DevForum | Roblox

    Jun 9, 2020 · Humanoid properties that changes the way Humanoid works BreakJointsOnDeath prevents the separation of limbs from the body of a Humanoid if disabled which is by default …

  2. Releasing Character Physics Controllers - Roblox

    Sep 29, 2023 · Hello Developers, Today, we are releasing a new set of instances designed to make it easier to customize character physics and locomotion. We have taken the piece of the …

  3. How to locate "Humanoid" - Help and Feedback / Scripting

    Jan 31, 2024 · I’m currently working on an infinite fall game as a scripting practice. I’m really new to scripting in lua on Roblox. I’m trying to locate the “Humanoid” in the player. Can someone …

  4. Get Humanoid From Player - Scripting Support - Roblox

    Oct 19, 2021 · Hello. How do I get Humanoid From A Player with a server-side script? I have tried looking through the dev forums/hub and made many scripts but I still can’t get the Player’s …

  5. [Solved] How to detect if a player took damage - Roblox

    Apr 1, 2021 · So, I’ve been working on a game for some weeks, and I decided to do a damage effect GUI. But, I need to know if a player took damage. I already tried to use …

  6. How FindFirstChild (), WaitForChild, etc. work and how to

    Apr 18, 2025 · end local Humanoid = hit.Parent:FindFirstChild("Humanoid") if Humanoid then -- Humanoid.Health = 0 --Making a Humanoid variable end The FindFirstChild () function has a …

  7. Humanoidless r6 clothing rig - Community Resources - Roblox

    Sep 19, 2025 · People wanted for a long time to display clothing. Or play animations without involving a humanoid. Well today I release an R6 rig that does exactly that! It does not contain …

  8. Humanoidstate defaults to running - Scripting Support - Roblox

    Jan 12, 2025 · I want support as to figuring out why my NPC is acting like this and how to fix it My NPC’s HumanoidStateType is defaulting to running when it should be idle, even though the …

  9. Detect when a player jumps - Scripting Support - Roblox

    Dec 21, 2021 · How to Detect when a player jumps?Few ways to do this Humanoid.Jumping:Connect(function(IsJumping) --Best way to do this if IsJumping then else …

  10. Best way to Wait () for Character? - DevForum | Roblox

    Jan 22, 2021 · The reason you had to wait() before was because the humanoid does not load at the same time as the character and gets added after the character is added. The optimal …