I want to play the crouch animation What do you want to achieve?
The Animation Doesn’t Play What is the issue?
I Tried looking on the devforum but i cant seem to find the anwser Did you look for solutions on the Developer Hub?
game:GetService("UserInputService").InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.LeftShift then
local crouch = char.Humanoid:LoadAnimation(script:WaitForChild("Crouch"))
crouch.Looped = true
crouch.Priority = "Action"
crouch:Play()
end
end)