so i am trying to make my animation into the walking animation but it is not working. this is my script: local function loadAnims(char)
local Hum = char:WaitForChild(“Humanoid”)
local Animator = Hum:WaitForChild(“Animator”)
for _, Track in pairs(Animator:GetPlayingAnimationTracks()) do
Track:Stop(0)
end
local AnimScript = char:WaitForChild("Animate")
AnimScript.walk.walkAnim.AnimationId = "rbxassetid://9960075961"
--AnimScript.walk.WalkAnim.AnimationId = "rbxassetid://9959954361"
end
local function onPlayerAdded(Player)
Player.CharacterAppearanceLoaded:Connect(loadAnims)
end
game.Players.PlayerAdded:Connect(onPlayerAdded)
and i’m getting this error: walkAnim is not a valid member of StringValue “Realgoodguyalways.Animate.walk”
Replace the Run animation instead of the Walk animation; the walk animation is only being used when the player walks very slowly (as far as I am aware).