So I made a tossing animation and whenever I activate a proximity prompt the animation does not play. There are not errors in the output, here is my script:
local anim = Instance.new("Animation")
local human = plr.Character.Humanoid
anim.AnimationId = "https://www.roblox.com/library/6108825056/CoinToss?nl=true"
local Toss = human:LoadAnimation(anim)
Toss:Play()
debris:AddItem(anim, 1)