"LoadAnimation requires the asset id to not be empty", I don't understand

I don’t understand why it is giving me this error because I have the animation id for it but it won’t work.

Animation: https://create.roblox.com/marketplace/asset/13371859800/Crawl

Pictures:
Capture4
Capture3


Capture

My Codes:

--// Variables
local UserInputService = game:GetService("UserInputService")

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

--// Configuration

-- keyBinds

local Crouch = "C"

local CrouchF = "W"

local CrouchB = "S"

local CrouchL = "A"

local CrouchR = "D"


-- Crawl Keybinds

local Crawl = "V"

local CrawlF = "W"

local CrawlB = "S"

local CrawlL = "A"

local CrawlR = "D"

-- Animation Id's

local CrouchIdle = 13371342611 --> Replace the number with your animation ID!

local CrouchFoward  = 13371615380

local CrouchBackward = 13371671426

local CrouchLeft = 13371696371

local CrouchRight = 13371707755

-- Crawl Id's

local CrawlIdle = 13371869583

local Crawling = 13371859800


--// Crouch animation finder

local animation = Instance.new("Animation")
animation.AnimationId = 'rbxassetid://' .. CrouchIdle

local animation2 = Instance.new("Animation")
animation2.AnimationId = 'rbxassetid://' .. CrouchFoward

local animation3 = Instance.new("Animation")
animation3.AnimationId = 'rbxassetid://' .. CrouchBackward

local animation4 = Instance.new("Animation")
animation4.AnimationId = 'rbxassetid://' .. CrouchLeft

local animation5 = Instance.new("Animation")
animation5.AnimationId = 'rbxassetid://' .. CrouchRight

-- Crawling animation finder

local CrawlIdleAnimation = Instance.new("Animation")
CrawlIdleAnimation.AnimationId = 'rbxassetid://' .. CrawlIdle

local CrawlAnimation = Instance.new("Animation")
CrawlIdleAnimation.AnimationId = 'rbxassetid://' .. Crawling


-- crouch animation tracks

local animationTrack = humanoid:WaitForChild("Animator"):LoadAnimation(animation)
animationTrack.Priority = Enum.AnimationPriority.Idle

local animationTrack2 = humanoid:WaitForChild("Animator"):LoadAnimation(animation2)
animationTrack2.Priority = Enum.AnimationPriority.Action

local animationTrack3 = humanoid:WaitForChild("Animator"):LoadAnimation(animation3)
animationTrack3.Priority = Enum.AnimationPriority.Action

local animationTrack4 = humanoid:WaitForChild("Animator"):LoadAnimation(animation4)
animationTrack4.Priority = Enum.AnimationPriority.Action

local animationTrack5 = humanoid:WaitForChild("Animator"):LoadAnimation(animation5)
animationTrack5.Priority = Enum.AnimationPriority.Action


-- crawl animation tracks

local animationTrack6 = humanoid:WaitForChild("Animator"):LoadAnimation(CrawlIdleAnimation)
animationTrack.Priority = Enum.AnimationPriority.Idle

print("found track 6")

local animationTrack7 = humanoid:WaitForChild("Animator"):LoadAnimation(CrawlAnimation)
animationTrack.Priority = Enum.AnimationPriority.Action

print("Track 7")

local crouching = false

local crawling = false

local canCrawl = false

--// Functions
UserInputService.InputBegan:Connect(function(input, gameProcessedEvent)
	if gameProcessedEvent then return end

	if input.KeyCode == Enum.KeyCode[Crouch] then
		if crouching then
			humanoid.WalkSpeed = 16
			crouching = false
			animationTrack:Stop()
			animationTrack6:Stop()
			animationTrack7:Stop()
			canCrawl = false
			character.HumanoidRootPart.CanCollide =  true
		else
			humanoid.WalkSpeed = 7
			crouching = true
			canCrawl = true
			animationTrack:Play()
			character.HumanoidRootPart.CanCollide =  false
		end
	end
	
	if input.KeyCode == Enum.KeyCode[CrouchFoward] then
		if crouching == true then
			animationTrack2:Play()
			animationTrack:Stop()
		end
	end
	if input.KeyCode == Enum.KeyCode[CrouchBackward] then
		if crouching == true then
			animationTrack3:Play()
			animationTrack:Stop()
		end
	end
	if input.KeyCode == Enum.KeyCode[CrouchLeft] then
		if crouching == true then
			animationTrack4:Play()
			animationTrack:Stop()
		end
	end
	if input.KeyCode == Enum.KeyCode[CrouchRight] then
		if crouching == true then
			animationTrack5:Play()
			animationTrack:Stop()
		end
	end
	if canCrawl == true then
		if input.KeyCode == Enum.KeyCode[CrawlF] or input.KeyCode == Enum.KeyCode[CrawlB] or input.KeyCode == Enum.KeyCode[CrawlL] or input.KeyCode == Enum.KeyCode[CrawlR] then
			animationTrack7:Play()
			animationTrack6:Stop()
			animationTrack:Stop()
		end
	else
		animationTrack:Play()
		animationTrack7:Stop()
		animationTrack6:Stop()
	end
	
end)



UserInputService.InputEnded:Connect(function(input, gameProcessedEvent)
	if gameProcessedEvent then return end
	
	if input.KeyCode == Enum.KeyCode[CrouchFoward] or input.KeyCode == Enum.KeyCode[CrouchBackward] or input.KeyCode == Enum.KeyCode[CrouchLeft] or input.KeyCode == Enum.KeyCode[CrouchRight] then
		animationTrack:Play()
		animationTrack2:Stop()
		animationTrack3:Stop()
		animationTrack4:Stop()
		animationTrack5:Stop()
	end
	if canCrawl == true then
		if input.KeyCode == Enum.KeyCode[CrawlF] or input.KeyCode == Enum.KeyCode[CrawlB] or input.KeyCode == Enum.KeyCode[CrawlL] or input.KeyCode == Enum.KeyCode[CrawlR] then
			animationTrack7:Stop()
			animationTrack6:Play()
			animationTrack:Stop()
		end
	else
		animationTrack:Play()
		animationTrack7:Stop()
		animationTrack6:Stop()
	end
end)

CrawlIdleAnimation.AnimationId = “rbxassetid://13371859100”

Oh… I didn’t even see that there…

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.