Animation for a model not working

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    Im triying to play a door animation for a bus model
  2. What is the issue? Include screenshots / videos if possible!
    The animation would not work when playing, heres a video of how the animation should look

    And heres a video of the animation not working and a picture of the script and the explorer

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    So far i have been checking the Developer Hub and i have checked the model anchor, the animation is uploaded by me and the place is made by me.

Does anyone knows whats wrong here?

1 Like

Hmm, try this:
–"

local Humanoid = script.Parent:WaitForChild(“Humanoid”)
local animation = script:WaitForChild(“Animation”)

local function playAnimationFromServer()
task.wait(7)
Humanoid:LoadAnimation(animation):Play()
end

playAnimationFromServer()

–"

you could also just use TweenService | Documentation - Roblox Creator Hub to move the door instead so you dont have to worry about making an animController

Still would not work, animation doesnt show and nothing on the output :pensive: