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
** You are now Level 1! **