R6 Animate for only R6 and R15 Animate only for R15

Hello! There this is my first post here on the dev forum!

I’m trying to make r6 animations only for r6 and r15 animations only for r15. So what i’m saying is that it detects if your rig type is r6 or r15 and with that info it puts a animate script in your character depending on your rig type. I want to know how to do this.

2 Likes

I think Humanoid.RigType should be what you need for this. It returns a HumanoidRigType that you can use to compare if they’re R6 or R15

Example of usage

if Humanoid.RigType == Enum.HumanoidRigType.R6 then
    --User is using R6, give R6 animations
else
    --User is using R15, give R15 animations
end

Where Humanoid is the name of the variable taht contains the Character’s Humanoid

3 Likes

Thank you! I’ll try it out. Hope fully it works.

Sorry for the late response but it WORKED! Thank you I can’t thank you enough!
I worked it out by doing this
local Animate = script.Parent.Animate

if script.Parent.Humanoid.RigType == Enum.HumanoidRigType.R6 then
	Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=6572796266" --User is using R6, give R6 animation
	Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=6572798687"
	Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=6572800016"
	
else
	--User is using R15, give R15 animations
end
2 Likes

Ok so for some reason it only works in roblox studio… Do you have any idea how to fix this? Thanks!

What type of game is this? A game you own or a game a group owns? The animations have to be owned by the owner of the game, or the group if it’s a group game I believe

Its a group game. So i will try to do that thanks!!!

1 Like