About 506,000 results
Open links in new tab
  1. 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

  2. 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 Humanoid. How do I do it? (Humanoid is the Humanoid in the Player Model in …

  3. 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 Humanoid dedicated to physical locomotion (the forces that move your character around) and put it into an isolated set of instances. These instances can be used without a Humanoid, letting you build a custom physical movement ...

  4. How to Actually Use Roblox's Physics Character Controllers

    Aug 10, 2024 · Hello! This is my first time making a tutorial on the DevForum, so please bear with the quality of this post. This topic will go into how you can ACTUALLY use Roblox’s new physics character controllers in a way that I hope is easier for people to understand. As someone who’s spent a significant amount of time figuring this out, implementing it …

  5. Detect when a player jumps - DevForum | Roblox

    Jun 2, 2023 · You can simply check the state of the Player’s Humanoid, FloorMaterial and Humanoid Health for that.

  6. Shrinking/Changing Player Size with a Script - Roblox

    May 14, 2024 · Why why you try to get the player’s Scale before they touch the part? Assuming this is a server script, you can only get the player once they touch the part. local part = game.Workspace.Part part.Touched:Connect (function (hit) local Humanoid = hit.Parent:FindFirstChild ("Humanoid") if Humanoid the…

  7. How I can change the Humanoid Health to 0? - Roblox

    Aug 26, 2021 · Just one question. I only can change the humanoid health to 0 one time. I was testing and I turn the menu GUI on for click play again everything happen again but the humanoid health doesnt change again. (When the character is removed from workspace other character is added that can be the issue.) Edit: Nvm I fixed.

  8. How to detect if the player is touching a part - Roblox

    Jan 19, 2024 · I dont want to detect if the player has touched a part but if the player is currently touching one is this possible?

  9. How to disable jumping? - Help and Feedback / Scripting ... - Roblox

    Sep 11, 2022 · How do I disable jumping? Like no jumping, period. I need them to be in the sitting position at all times/ If the player tries to jump it should put them in the sit position, or a way to remove jumping from the game (trying to jump with space or with the button on mobile will not do anything) would work even better This is what I have: game.Players.PlayerAdded:Connect(function(p) p ...

  10. Is there a way to force a player into a “Seat”? - Roblox

    Jan 9, 2023 · To force a player character into a seat using script, you can use the Humanoid.Sit function. This function allows you to specify a seat object, and it will automatically move the player character’s root part to the seat and sit them down.