- Правильно не .Connect а :Connect
- Правильно будет не if hum -= nil then , а if hum then или if hum ~= nil then
- Лучше использовать метод LoadAnimation у класса Animator, а не Humanoid так как Humanoid:LoadAnimation теперь считается устаревшим
script.Parent.Activated:Connect(function())
local anim script.Parent.Animation
local chr = script.Parent.Parent -- Убедись что правильно
local hum = chr:FindFirstChild("Humanoid")
if hum then
local an = hum:WaitForChild("Animator", 10):LoadAnimation(anim)
an:Play()
end
end)
P.S: В следующий раз скрипт вставляй текстом :<