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.
01 | local Players = game:GetService( "Players" ) -- Variables |
02 |
03 | local function onCharacterAdded(character) |
04 | local humanoid = character:WaitForChild( "Humanoid" ) |
05 |
06 | for _, playingTracks in pairs (humanoid:GetPlayingAnimationTracks()) do |
07 | playingTracks:Stop( 0 ) |
08 | end |
09 |
10 | local animateScript = character:WaitForChild( "Animate" ) |
11 | animateScript.run.RunAnim.AnimationId = "rbxassetid://616163682" -- Run |
12 | animateScript.walk.WalkAnim.AnimationId = "rbxassetid://616168032" -- Walk |
13 | animateScript.jump.JumpAnim.AnimationId = "rbxassetid://616161997" -- Jump |
14 | animateScript.idle.Animation 1. AnimationId = "rbxassetid://616158929" -- Idle (Variation 1) |
15 | animateScript.idle.Animation 2. AnimationId = "rbxassetid://616160636" -- Idle (Variation 2) |
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