StarterCharacter Animations?

I’m working on a game where a certain team will have different animations than the neutral team. I also plan on adding a startercharacter for said team, but it’s not my priority currently.

I’m learning scripting slowly, but I know nothing about what to put where and etc.

Here’s what I want specifically:
It’s a game set around the Little Nightmares 3, but it’s more of a showcase and hangout.
The StaracterCharacter for everyone is Mono, pictured below.

But I as the owner, want to look different from everyone else, and have the animations to fit it.
The animation pack I wish to use is the Oldschool pack made by Roblox, since it resembles the character’s style from the game.
image

Help would be greatly appreciated, thanks!

1 Like

I’ve got the sizing and all how I want it, I’m just stuck on team specific characters and separate animations

1 Like

If you’re automatically set to this character when you join the game then I suggest tweaking the Animate script inside the character itself.

YourCharacter.Animate.run.RunAnim.AnimationId = “YourAnimationId”

If you don’t know how to get the Animation Id from Roblox made animations, I suggest using an extension called BTRoblox.

I’ll definitely look into this, but is there a way to easily make it to where the owner (myself) has a different StarterCharacter?

You could do

Local SpecialCharacter = YourSpecialCharacter:Clone()
SpecialCharacter.Name = Character.Name
SpecialCharacter.Parent = game.Workspace
SpecialCharacter.HumanoidRootPart.CFrame = Character.HumanoidRootPart.CFrame
Player.Character = SpecialCharacter

You can clone the animation you would like and replace it with the old animation.

I tried that, it didn’t work, it just kept the basic animations. I tried to also change my animations on roblox, get them to work in studio, and then clone myself and make myself the StarterCharacter and it went back to the basic animatons.