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.
#Need Custom StarterCharacter help!
1 messages · Page 1 of 1 (latest)
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()
Walking animation! I'm gonna make a few idle animations, running, jump, other animations in the morning! Would I need to adjust the script to accommodate other animations?
if you got seperate animations yes
imo just take the default roblox animate.lua script and change the ids to your ones (it appears in play mode, it's a localscript under your character). note that because your rig is different from r6 and r15 the default roblox animations probably wont work.
i pasted this in localscript and changed the Animation ID and it still didnt work