RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"anchor the humanoid rootpart"
-- server script local character = game.Workspace:FindFirstChild("CharacterName") -- replace "CharacterName" with the name of your character if character then local humanoidRootPart = character:FindFirstChild("HumanoidRootPart") if humanoidRootPart then humanoidRootPart.Anchored = true end end