I tried putting the animate script into the character or just into startercharacterscripts but nothing is working. I uploaded the animation, pasted it in, but it didnt work. can someone help me? Is there more steps to animating a startercharacter? my rig type is r6.
local Players = game:GetService("Players") -- Variables local function onCharacterAdded(character) local humanoid = character:WaitForChild("Humanoid") for _, playingTracks in pairs(humanoid:GetPlayingAnimationTracks()) do playingTracks:Stop(0) end local animateScript = character:WaitForChild("Animate") animateScript.run.RunAnim.AnimationId = "rbxassetid://616163682" -- Run animateScript.walk.WalkAnim.AnimationId = "rbxassetid://616168032" -- Walk animateScript.jump.JumpAnim.AnimationId = "rbxassetid://616161997" -- Jump animateScript.idle.Animation1.AnimationId = "rbxassetid://616158929" -- Idle (Variation 1) animateScript.idle.Animation2.AnimationId = "rbxassetid://616160636" -- Idle (Variation 2) animateScript.fall.FallAnim.AnimationId = "rbxassetid://616157476" -- Fall animateScript.swim.Swim.AnimationId = "rbxassetid://616165109" -- Swim (Active) animateScript.swimidle.SwimIdle.AnimationId = "rbxassetid://616166655" -- Swim (Idle) animateScript.climb.ClimbAnim.AnimationId = "rbxassetid://616156119" -- Climb -- change all of the id's to your animation ids. end local function onPlayerAdded(player) player.CharacterAppearanceLoaded:Connect(onCharacterAdded) end Players.PlayerAdded:Connect(onPlayerAdded)
Catalog Animations - https://developer.roblox.com/articles/catalog-animations Just incase you wanted to use something like Elderly or Toy.
Read this in game animation article by Roblox.This may be helpfull.
https://developer.roblox.com/en-us/articles/using-animations-in-games