About 525,000 results
Open links in new tab
  1. Beginner's guide to Humanoids - Community Tutorials - Roblox

    Jun 9, 2020 · Humanoids are essentially used instances in Roblox and foundations for the bodies of characters. This tutorial explains the API and uses of functions, events, and properties. …

  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. [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 …

  4. 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 …

  5. 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 …

  6. 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 …

  7. How to stop all player animations - Scripting Support - Roblox

    Mar 11, 2021 · Is there any way to stop all player animations to play another one? after the animation is over everything goes back to normal

  8. How to switch player to different character (custom rig) mid-game

    Aug 7, 2024 · Overview I have seen a number of posts over the years on the proper way to switch over a player’s character model to a different rig. The primary issue is that once the …

  9. How to cancel a humanoid:MoveTo ()? - Scripting Support - Roblox

    Aug 1, 2025 · There is a ~1 stud threshold to account for various humanoid speeds and framerates. The character gets stuck and the eight-second timer expires. The value of either …

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

    Dec 21, 2021 · Humanoid.Jumping:Connect (function (IsJumping) --Best way to do this if IsJumping then else end end) Humanoid:GetPropertyChangedSignal ("Jump"):Connect …