I am trying to make the animation play via script, the id is uploaded and isn’t sanitized
The animation just doesn’t play at all, the camera doesn’t move to the keyframes and the chair, nothing happens at all
I can’t seem to find any solutions for this, it has no symptoms apart from not playing
The animation is made in moon 2, its got the keyframesequence uploaded with a camera and chair as apart of it.
local event = game.ReplicatedStorage:WaitForChild("ChairSitEvent")
event.OnClientEvent:Connect(function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local animator = humanoid:WaitForChild("Animator")
local chairSit = Instance.new("Animation")
chairSit.AnimationId = "rbxassetid://------------"
local chairSitAnimationTrack = animator:LoadAnimation(chairSit)
chairSitAnimationTrack:Play()
end)
The clip of whats meant to happen ^^
The clip of what actually happens ^^