Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can i override "Custom Animation" over default walkingAnim/runningAnim ?

Asked by 4 years ago

Here's the script that i made for the running animation.

01local UIS = game:GetService("UserInputService")
02local Players = game:GetService("Players")
03local player = Players.LocalPlayer
04local runAnim = Instance.new("Animation")
05runAnim.AnimationId = "rbxassetid://5827492961"
06 
07local character = player.CharacterAdded:Wait()
08 
09local humanoid = character:WaitForChild("Humanoid")
10local humAnimator = humanoid:WaitForChild("Animator")
11local runAnimConfirm = humAnimator:LoadAnimation(runAnim)
12 
13local isKeyPressed = false
14 
15UIS.InputBegan:Connect(function(input)
View all 44 lines...

2 answers

Log in to vote
1
Answered by 4 years ago

You can stop the player's current running animations then run your animations

Example here

1for i,AnimationPlaying in pairs(Player.Character.Humanoid:GetPlayingAnimationTracks()) do
2    AnimationPlaying:Stop()
3end
4--Load your animation and play it here
0
It didn't do as i wanted, it stopped the custom animation. ZOOP1015 44 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

Roblox has their own tutorial on this.

Use this link: https://developer.roblox.com/en-us/articles/using-animations-in-games

Answer this question