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.
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
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