I tried to play an Animation with the available documentation. It turned out to be this :
local Players = game:GetService("Players")
local player = Players:FindFirstChild("Builderman")
local character = player.Character
local humanoid = character:FindFirstChild("Humanoid")
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://16221843862"
local animationTrack = humanoid:LoadAnimation(animation)
animationTrack:Play()
It didn't work. I think the LoadAnimation is not valide anymore.
I need help for this. I'm very new to Roblox's Luau
Updated got R15 animation.