#Need Custom StarterCharacter help!

1 messages · Page 1 of 1 (latest)

polar wyvern
#

when spawned in i can drift around in a t-pose, but when i walk i want it to play the walking animation i made and it aint doing so! Been stuck on this for literal hours now and im tired.

quasi fiber
#

what animation do you want it to play?

#

copy the id from your animation

#

then add a code where you can paste in your id

#

local player = game.Players.LocalPlayer -- Ignore
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")

-- Replace this with your actual animation ID
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://YOUR_ANIMATION_ID"

--Ignore
local loadedAnim = humanoid:LoadAnimation(animation)
loadedAnim:Play()

polar wyvern
quasi fiber
#

if you got seperate animations yes

sweet cove
polar wyvern