I do know this question has been asked many times but nothing has worked
1st: I have tried to copy the animate script from the character but it just plays a blank animation
2nd: I have tried the official roblox tutorial and that’s no help here’s the code:
local Players = game:GetService("Players")
local function onCharacterAdded(character)
-- Get animator on humanoid
local humanoid = character:WaitForChild("Humanoid")
local animator = humanoid:WaitForChild("Animator")
-- Stop all animation tracks
for _, playingTrack in animator:GetPlayingAnimationTracks() do
playingTrack:Stop(0)
end
local animateScript = character:WaitForChild("Animate")
animateScript.run.RunAnim.AnimationId = "rbxassetid://16744072591"
animateScript.walk.WalkAnim.AnimationId = "rbxassetid://16744072591"
end
local function onPlayerAdded(player)
player.CharacterAppearanceLoaded:Connect(onCharacterAdded)
print("Player loaded")
end
Players.PlayerAdded:Connect(onPlayerAdded)
For context I get no errors and the the animation is published by me
And here’s the game settings:
I’m really lost and nothing works if anyone knows whats going one please help me out.