I have no past experience with animations/loading animations, so I’m a bit confused here (if art design support would be a better category for this, please do tell me).
Code:
local Animator = Instance.new("Animator")
Animator.Parent = game.Workspace.noob.Humanoid
wait(1)
local animationFolder = game.ReplicatedStorage.death
local Animation2 = game.Workspace.noob.Humanoid.Animator:LoadAnimation(animationFolder.t_noob)
wait(4)
Animation2:Play()
I was under the impression I had already done such. Please do elaborate more, as once again, I am completely unfamiliar with anything regarding animation in Roblox. What am I to do next to truly have exported the animation?