I add Capybaras to Maxwell cat and animation isnt working to capybaras
local set = script.Settings
local sp = set.Speed
local enabled = set.Enabled
local hum = script.Parent:WaitForChild("NPC2")
local humanim = hum:LoadAnimation(script:FindFirstChildOfClass("Animation"))
--Playing Animation--
if enabled.Value == true then
humanim:Play()
humanim.Looped = true
humanim:AdjustSpeed(sp.Value)
end
Did i do something wrong?