I have this animation I just made of a player being on a lockers counter,
I made one with it slightly moving and it doesn’t work (3 keyframes)
But when I load my normal one without any movements and just 1 keyframe it works.
What can I fix?
ServerScriptService handler script to put the dummy in the workspace
game.Players.PlayerAdded:Connect(function(plr)
local dummy = game.ServerScriptService:WaitForChild("Dummy")
local desc = game.Players:GetHumanoidDescriptionFromUserId(plr.UserId)
local clone = dummy:Clone()
clone.Parent = workspace
clone:WaitForChild("Humanoid"):ApplyDescription(desc)
wait(2)
local anim = game.Workspace:WaitForChild("Dummy"):WaitForChild('Humanoid'):LoadAnimation(script:WaitForChild("Animation"))
wait(1)
anim:Play()
end)
It doesnt return any errors and the humanoid isn’t anchored
https://streamable.com/jv7v3d