I tried changing the thing in avatar settings, doing the animate local script and putting that in starter character scripts also tried using a serverscript service and i keep getting the same exact no animation playing result
Im very new to scripting but here is script i made with help
local WALK_ANIMATION_ID = "rbxassetid://120242741346767"
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local humanoid = character:WaitForChild("Humanoid")
-- Make sure this is R6
if humanoid.RigType ~= Enum.HumanoidRigType.R6 then
return
end
local animate = character:WaitForChild("Animate")
-- Walk animation
local walk = animate:WaitForChild("walk")
local walkAnim = walk:WaitForChild("WalkAnim")
walkAnim.AnimationId = WALK_ANIMATION_ID
end)
end)
legit will not work, every youtube video does the same thing but my animation legit will not play
** You are now Level 6! **