How do I make it so that the moving-while-crouching-animation plays only if you move?
Basically, I've made it so that if you hold LCtrl (using UIS) it lets you crouch, but the problem is, the moving-while-crouching-animation plays even when you're not moving. I've made use of GetState() but it doesn't seem to work. Here's the block of code.
04 | local UIS = game:GetService( "UserInputService" ) |
05 | local player = game.Player.LocalPlayer |
06 | local character = player.Character |
07 | local humanoid = character:WaitForChild( "Humanoid" ) |
14 | local crouchedanim = Instance.new( "Animation" ) |
15 | crouchedanim.Parent = character |
16 | crouchedanim.Name = "CrouchedAnim" |
19 | local crouchedtrack = humanoid:LoadAnimation(crouchedanim) |
21 | local crouchmoving = Instance.new( "Animation" ) |
22 | crouchmoving.Parent = character |
23 | crouchmoving.Name = "MovingCrouchAnim" |
26 | local crouchmovetrack = humanoid:LoadAnimation(crouchedanim) |
28 | UIS.InputBegan:Connect( function (key) |
29 | if key.KeyCode = = Enum.KeyCode.LeftControl then |
37 | UIS.InputEnded:Connect( function (key) |
38 | if key.KeyCode = = Enum.KeyCode.LeftControl then |
42 | humanoid.WalkSpeed = 16 |
47 | humanoid.StateChanged:Connect( function (oldState, newState) |
48 | if newState = = Enum.HumanoidStateType.Running then |
ignore the fact that there are no ends or spacing, i just typed it up here cause i have no time to open roblox studio (and i am 100% sure that that's the exact code)
Basically, the problem here is that the moving-while-crouched animation still plays even when the player is not running. How do I fix this, how do I make it work?