Hello! So I have a walking animation, and I have a local script inside of StarterPlayerScripts, and whenever I play test it on my brother's account, the animation is not playing for him, but whenever I play test it on my account, the punch and walk animations are working. Does anyone know why? My Local Script Code: local Players = game:GetService("Players")
local player = Players.LocalPlayer
player.CharacterAdded:Connect(function(char)
char:WaitForChild("Animate")
local walk = char.Animate:WaitForChild("walk")
local walkAnim = walk:WaitForChild("WalkAnim")
walkAnim.AnimationId = "rbxassetid://97842929871364"
end)