Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Роблокс студио скрипт

аааа сачв Ученик (104), на голосовании 2 недели назад
18:08:34.860 LoadAnimation requires the asset id to not be empty - Server - CombatServer:42
18:08:34.860 Stack Begin - Studio
18:08:34.860 Script 'ServerScriptService.CombatServer', Line 42 - Studio - CombatServer:42
18:08:34.860 Stack End - Studio

Пишет :LoadAnimation requires the asset id to not be empty ,хотя заполнил поле с айди

вот сам скрипт:

local rp = game:GetService("ReplicatedStorage")
local remotes = rp:WaitForChild("Remotes")
local animations = rp:WaitForChild("Animations")

local punchRemote = remotes:WaitForChild("Punch")

local MAX_COMBO = 4

local function changeCombo(char)
local combo = char:GetAttribute("Combo")
if combo >= MAX_COMBO then
char:SetAttribute("Combo", 1)
else
char:SetAttribute("Combo", combo + 1)
end
end

local function getPunchAnim(char)
local combo = char:GetAttribute("Combo")
local punchAnims = animations:WaitForChild("Combat"):GetChildren()

local currAnim = punchAnims[combo]

return currAnim
end

punchRemote.OnServerEvent:Connect(function(player)
local char = player.Character
local hum = char:WaitForChild("Humanoid")
local humRp = char:WaitForChild("HumanoidRootPart")

local attacking = char:GetAttribute("Attacking")
local punching = char:GetAttribute("Punch")

if attacking or punching then return end

char:SetAttribute("Attacking",true)
char:SetAttribute("Punch",true)

changeCombo(char)

local playPunchAnim = hum:LoadAnimation(getPunchAnim(char))

playPunchAnim.KeyframeReached:Connect(function(kf)
if kf == "Hit" then
char:SetAttribute("Attacking",false)

if char:GetAttribute("Combo") == MAX_COMBO then
task.wait(1)
end

char:SetAttribute("Punch",false)
end

end)

playPunchAnim:Play()

end)


помогите пожалуйста, буду очень рад
Голосование за лучший ответ
я Знаток (281) 1 месяц назад
вроде исправил local rp = game:GetService("ReplicatedStorage")
local remotes = rp:WaitForChild("Remotes")
local animations = rp:WaitForChild("Animations")

local punchRemote = remotes:WaitForChild("Punch")

local MAX_COMBO = 4

local function changeCombo(char)
local combo = char:GetAttribute("Combo")
if combo >= MAX_COMBO then
char:SetAttribute("Combo", 1)
else
char:SetAttribute("Combo", combo + 1)
end
end

local function getPunchAnim(char)
local combo = char:GetAttribute("Combo")
local punchAnims = animations:WaitForChild("Combat"):GetChildren()

-- Проверка, чтобы combo не превышал количество анимаций
if combo > #punchAnims then
combo = 1 -- или любое другое значение по умолчанию
char:SetAttribute("Combo", combo)
end

local currAnim = punchAnims[combo]

-- Логирование для отладки
if not currAnim then
warn("No animation found for combo: " .. tostring(combo))
end

return currAnim
end

punchRemote.OnServerEvent:Connect(function(player)
local char = player.Character
local hum = char:WaitForChild("Humanoid")
local humRp = char:WaitForChild("HumanoidRootPart")

local attacking = char:GetAttribute("Attacking")
local punching = char:GetAttribute("Punch")

if attacking or punching then return end

char:SetAttribute("Attacking", true)
char:SetAttribute("Punch", true)

changeCombo(char)

local currAnim = getPunchAnim(char)
if currAnim then
local playPunchAnim = hum:LoadAnimation(currAnim)

playPunchAnim.KeyframeReached:Connect(function(kf)
if kf == "Hit" then
char:SetAttribute("Attacking", false)

if char:GetAttribute("Combo") == MAX_COMBO then
task.wait(1)
end

char:SetAttribute("Punch", false)
end
end)

playPunchAnim:Play()
else
-- Если анимация не найдена, можно обработать это событие
warn("Failed to play punch animation.")
end
end)

пробуй
Похожие вопросы