How can i override "Custom Animation" over default walkingAnim/runningAnim ?
Here's the script that i made for the running animation.
01 | local UIS = game:GetService( "UserInputService" ) |
02 | local Players = game:GetService( "Players" ) |
03 | local player = Players.LocalPlayer |
04 | local runAnim = Instance.new( "Animation" ) |
07 | local character = player.CharacterAdded:Wait() |
09 | local humanoid = character:WaitForChild( "Humanoid" ) |
10 | local humAnimator = humanoid:WaitForChild( "Animator" ) |
11 | local runAnimConfirm = humAnimator:LoadAnimation(runAnim) |
13 | local isKeyPressed = false |
15 | UIS.InputBegan:Connect( function (input) |
17 | if input.KeyCode = = Enum.KeyCode.LeftShift then |
20 | if isKeyPressed = = true then |
22 | humanoid.WalkSpeed = 32 |
33 | UIS.InputEnded:Connect( function (input) |
35 | if input.KeyCode = = Enum.KeyCode.LeftShift then |
38 | if isKeyPressed = = false then |
40 | humanoid.WalkSpeed = 16 |