#Wave animation doesn't work

1 messages · Page 1 of 1 (latest)

tropic cradle
#

I have this really easy script, but somehow no animation wants to run: 'Failed to load animation with sanitized ID'

``local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")

local animator = humanoid:FindFirstChildOfClass("Animator")
if not animator then
animator = Instance.new("Animator")
animator.Parent = humanoid
end

local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://3576686446" -- Replace with a valid emote animation ID

local track = animator:LoadAnimation(animation)
track.Priority = Enum.AnimationPriority.Action

track:Play()
print("Playing emote")

outer reef
#

it means that the id doesnt exist was deleted or u dont own it

#

did u upload it as yours?@tropic cradle

tropic cradle
#

it's the wave emote from roblox, I own it

outer reef
#

where are you running the script

tropic cradle
#

starterplayerscript

outer reef
#

no error is given at all?

outer reef
#

there

#

starterplayer character