So I've made an animation of an NPC sitting while reading a book. When I invite my friends over to come check it out, they say it's not working. I say to myself, "That's strange; the animation is working for me. What's wrong with it?"
I then ask one of my family members to go on a server with me and tell me if the animation works or not, and he said no it doesn't work.
This is in a normal script, inside of a NPC. I've already tried local, doesn't work:
wait(1)
local NPC = script.Parent
local animation = Instance.new("Animation", NPC)
animation.AnimationId = "rbxassetid://216382706"
local loadanim = NPC.Humanoid:LoadAnimation(animation)
loadanim:Play()
What's wrong with the animation? Did I forget something? Is it the way I set it up? What is it? |