ToldFable
(fable)
October 22, 2019, 5:24am
#1
What do you want to achieve?
I want a normal walking animation.
What is the issue?
If a Player walks for too long, instead of a normal walking animation, they get this.
Watch robloxapp-20191022-0018267 | Streamable
The strange part is that NPCs have the same animation script, but they don’t have this glitch.
I’m using the default Roblox Animation script.
Is it because my character is walking so slow?
Has anyone else gotten this before?
Code: https://pastebin.com/raw/yAgihaea
2 Likes
Could you give is some of your script? It is easier to figure things out with some info. Are you defining the WalkAnim?
1 Like
My guess is you are not changing the walkanim that is already in your character, try something like this:
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
char.Humanoid.walk.WalkAnim.AnimationId = “rbxassetid:// animation id goes here”
end)
end)
i only get this when the transition between animations isn’t done correctly. are you adjusting the speed of the player while walking?
Roblox provides 2 different animations for both walking and running, if it’s stuck between a transition speed it’ll attempt to play both and end up looking like it’s bugged.
2 Likes
ToldFable
(fable)
October 22, 2019, 4:33pm
#5
Oh yea, I forgot to include the actual code.
How silly of me.
I’ve updated the original post
ToldFable
(fable)
October 22, 2019, 4:39pm
#6
I seem to have fixed the bug by changing the ScaleDampeningPercent Value to 0.2 instead of 0.4