How is this not valid?

I’m using a local script to play this animation. For some reason, the output says it isn’t a valid member.

local Tool = script.Parent

local Animation = Tool.BandageUse

local UseAnimation = Humanoid:LoadAnimation(Animation)
UseAnimation:Play()

The script is running faster than your character even loads. (if the tool is on the starterpack) Do not worry though all you gotta do is

local Animation = Tool:WaitForChild("BandageUse") -- Waits for a child named "BandageUse" on tool.

Happy to help, any doubts just reply me :grinning: