#Animate a custom character
1 messages · Page 1 of 1 (latest)
** You are now Level 7! **
here's my script : ```lua
local character = script.Parent
local animController = character.HumanoidRootPart:WaitForChild("AnimationController")
local animator = animController:WaitForChild("Animator")
local idleAnimation = Instance.new("Animation")
idleAnimation.AnimationId = "rbxassetid://88312978641356"
local track = animator:LoadAnimation(idleAnimation)
track:Play()