#Animation won't play

4 messages · Page 1 of 1 (latest)

ruby vault
#

I have an animation I am trying to play and I assumed this would work but I can't seem to get it to play;

local controlstart = 1
local userInput = game:GetService('UserInputService')
local Playerz = game:GetService('Players')
local Player = game.Players.LocalPlayer
local Animation1 = script.StartingPose
local Character = Player.Character or Player.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")
local starting = Humanoid:LoadAnimation(Animation1)

while controlstart == 1 do
starting:Play()
starting.looped = true
end

I also recieve an error saying "looped is not a valid member of AnimationTrack StartingPose"

#

ok I can now see myself playing the animation but only my head is moving not anything else i saved

#

do i need to set it as a certain animationt ype?

#

it was like a sitting pose