
How to get a NPC sit down on a seat on client / How to ... - DevForum
Nov 7, 2024 · The issue of NPCs not sitting properly on seats in Roblox often stems from physics timing and synchronization limitations, especially when handling this client-side. When calling …
What Is Humanoid:ApplyDescription ()? And How To Use It?
Dec 13, 2022 · So basically each avatar has a HumanoidDescription inside their Humanoid-object. This description contains information to the avatar’s look. You can use Humanoid:ApplyDescription() to …
How to stop Humanoid:MoveTo ()? - Scripting Support - Roblox
Feb 26, 2021 · I’m trying to make a bot for my game, when the player walks too close to the bot I want the bot to stop. I’ve tried moving the humanoid to its humanoidRootPart, it just starts spinning around …
How do I hide a Player's Humanoid's Name/Health - Roblox
Aug 1, 2018 · I’m pretty new to lua but I’m trying to disable/hide the Name and Health of any Player’s in a game - (this is because I have a custom GUI that will replace them) Is there any way I can do this? …
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 …
Reviving Humanoid after .Died - Scripting Support - Roblox
May 24, 2020 · Hello. I am trying to revive the player’s humanoid after it’s state is set to Dead. This is currently what I’m trying to do: humanoid.Died:Connect(function() …
How do I access Player, Character & Humanoid in Studio?
Jun 18, 2022 · Goal So I want to understand how to access the Player, Character & Humanoid in studio, I have searched up tutorials on how to do it, but it never really works and they don’t explain why it …
[Potential Action Required] Update for HumanoidDescription APIs
Oct 7, 2025 · Overview We are changing the default behavior for Humanoid:ApplyDescription and Players:CreateHumanoidModelFromDescription to automatically enable server-side checks on …
How to slow down a Humanoid/Player without changing their ... - Roblox
Mar 12, 2025 · For a staff ability that adds a force to the Humanoid and slows their movements, without affecting their WalkSpeed. I used to have a BodyPosition instance in the Player’s HumanoidRootPart …
How do I make a humanoid walk like a player would to a ... - DevForum
May 16, 2023 · local humanoid = npc.Humanoid Then, use the :MoveTo() method to make the npc walk. You do need to provide a position within the parentheses so the npc knows where to walk to. …