Can't make Animation/Code work

Are you trying to implement a walk/run and idle animation?

Yes, I’m trying to have them replaced from defualt roblox animations

You might end up better using the humanoid’s Running event:

local player = game:GetService("Players").LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local Animator = humanoid:FindFirstChildWhichIsA("Animator") or Instance.new("Animator", humanoid)

local currentlyRunning = nil
local currentlyIdling = nil

local onRunning = function(speed)
    if speed > 2 then
        -- perhaps check if above like 5-6 for running, and replace current run with walk
        -- or just adjustspeed based on speed / 16
        if currentlyIdling then 
            currentlyIdling:Stop()
            currentlyIdling = nil
        end
        currentlyRunning = Animator:LoadAnimation(script:WaitForChild("Run"))
        currentlyRunning:Play()
    else
        if currentlyRunning then
		    currentlyRunning:Stop()
		    currentlyRunning = nil
	    end
        currentlyIdling = Animator:LoadAnimation(script:WaitForChild("Idle"))
        currentlyIdling:Play()
    end
end

humanoid.Running:Connect(onRunning)

If you still can’t see the animation, the issue is most likely with your animation priority

Everything should be in order, i just tried your code as well just sets me back to defualt roblox animation

But it runs once right? Set your animations looped to true when uploading it

No, it doesn’t run at all now.

The issue is with your animations, it works perfectly fine for me. What are their animation priorities? And is looped turned on?

Loop is turned on, I’m not sure what prioities are since I don’t really know anything about animation.

When uploading the animation to roblox website in the Animation Editor, you can set its priority
image

So would i have to resave them all with this applied or no?

Most likely, if you can see the animation asset playing on your character then yes

what would i set it as a prioity?

(EDIT) Which one of the options

i would say action or core, whichever overrides the default anim, action seems to work fine for me

It’s been set to action before, I’ll try core.

Oh also don’t forget to rename your animations under the scripts as they are in the script, set runs name to Run and idle to Idle

Alright, thank you it seemed to work!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.