My animation doesnt play

  1. I only want to play the animation

image

  1. i checked devforum but i didnt find anything
local inputService = game:GetService("UserInputService")
local player = game.Players.LocalPlayer

inputService.InputBegan:Connect(function(input)
	if input.KeyCode == Enum.KeyCode.C then


		if player and player.Character then
			local Humanoid = player.Character:FindFirstChild("Humanoid")
			local animation = Humanoid:LoadAnimation(script.Animation)
			animation:Play()
		end
	end
end)

Ive had this problem aswell. I dont think your script is the problem I think its the animation. sanitized ID means you are using an ID that isnt yours. However, it seems it took the 1 off the frount of your orginial ID. I would wait a couple hours or just use a different animation because it seems that your ID hasnt been uploaded yet.