-- This script is intended for Roblox

-- Replace 'rbxassetid://<ANIMATION_ID>' with your own walking animation ID
local newWalkAnimationId = "rbxassetid://16738332169"

-- Function to change the walking animation
local function changeWalkingAnimation()
    local player = game.Players.LocalPlayer
    local character = player.Character or player.CharacterAdded:Wait()
    local humanoid = character:WaitForChild("Humanoid")

    -- Get the Animate script
    local animateScript = character:WaitForChild("Animate")
    
    -- Change the walking animation
    if animateScript:FindFirstChild("walk") then
        local walkAnim = animateScript.walk:FindFirstChild("WalkAnim")
        if walkAnim then
            walkAnim.AnimationId = newWalkAnimationId
        end
    end
end

-- Run the function
changeWalkingAnimation()

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: