## I get the error code "Downloading asset failed for asset id 15394384719. Is the asset id corr....

1 messages · Page 1 of 1 (latest)

odd eagle
#

I get the error code "Downloading asset failed for asset id 15394384719. Is the asset id correct and is the asset type "Model"?"

this is my script

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local player = Players.LocalPlayer

local Character = player.Character or player.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")

local FireAnimation = ReplicatedStorage:WaitForChild("FireAnimation")
local InspectAnimation = ReplicatedStorage:WaitForChild("InspectAnimation")

local FireAnimtrack = Humanoid:LoadAnimation(FireAnimation)
local InspectAnimtrack = Humanoid:LoadAnimation(InspectAnimation)

local FireAnimPlaying = ReplicatedStorage:WaitForChild("FireAnimPlaying")
local InspectAnimPlaying = ReplicatedStorage:WaitForChild("InspectAnimPlaying")

UserInputService.InputBegan:Connect(function(input, gameProcessed)
    if gameProcessed then return end

    if input.KeyCode == Enum.KeyCode.F then
        if not FireAnimPlaying.Value then
            FireAnimPlaying.Value = true
            InspectAnimtrack:Play()
        end
    elseif input.UserInputType == Enum.UserInputType.MouseButton1 then
        print("Left mouse button clicked")
    end
end)

please help

peak kindle
odd eagle
#

Script is in starterPlayer > StarterPlayerScripts

peak kindle
odd eagle
peak kindle
#

Go find where it's trying to require 15394384719, as neither animation uses that ID.

Errors normally tell you where the error is occuring if you click on the righthand side of it

odd eagle
fervent stormBOT
#

studio** You are now Level 1! **studio

odd eagle
#

w

peak kindle
odd eagle
#

what script is requiring asset

#

lol

odd eagle
odd eagle