RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that unanchors the humanoid rootpart for a player"
-- server script local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local humanoidRootPart = character:WaitForChild("HumanoidRootPart") humanoidRootPart.Anchored = false end) end)