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!
Making an equip animation but when i use the animation first time after starting a game, it snaps back into it’s position
What is the issue? Include screenshots / videos if possible!
local Players = game:GetService("Players")
local Player = Players.LocalPlayer
local Character : Model = Player.Character or Player.CharacterAdded:Wait()
local ContentProvider = game:GetService("ContentProvider")
for _, Item in Character:GetDescendants() do
if Item:IsA("Animation") then
ContentProvider:PreloadAsync({Item})
end
end