RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make my npc climb"
-- Add the script to the humanoid of your npc local humanoid = script.Parent local animation = Instance.new("Animation") animation.AnimationId = "rbxassetid://507765644" -- you can replace with your climb animation id local loadedAnimation = humanoid:LoadAnimation(animation) humanoid.StateChanged:Connect(function(oldState, newState) if newState == Enum.HumanoidStateType.Climbing then loadedAnimation:Play() end end)