You can write your topic however you want, but you need to answer these questions:
- What do you want to achieve? Keep it simple and clear!
I want the character to start moving with the animation
-
What is the issue? Include screenshots / videos if possible!
well I have an animation done and still not working and even with my normal character there is no animation
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
yes, still not working
here’s the script :
local char = script.Parent
local humanoid = char:WaitForChild("Humanoid")
local walkAnim = script:WaitForChild("Walk")
local walkAnimTrack = humanoid.Animator:LoadAnimation(walkAnim)
humanoid.Runing:Connect(function(speed)
if speed > 0 then
if not walkAnimTrack.IsPlaying then
walkAnimTrack:Play()
end
else
if walkAnimTrack.IsPlaying then
walkAnimTrack:Stop()
end
end
end)