You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
animation tool
What is the issue? Include screenshots / videos if possible!
animation plays like its heavy
local id=script.Animation
db=false
local plr=game.Players.LocalPlayer
local char=plr.Character
local hum=char.Humanoid
plr.CharacterAdded:Connect(function(newchar)
char=newchar
hum=char.Humanoid
end)
local anim=hum:LoadAnimation(id)
script.Parent.Activated:Connect(function()
if db==false then
db=true
anim:Play()
else
anim:Play()
end
end)
Check the Animation Priority because it might merge with other animations on the same level or may not play it at all
Add anim.Priority= Enum.AnimationPriority.Action below the anim variable for a quick check so you dont have to export it again and again