I would like to edit my scripts to be functional to the types of Characters that exist (R6 and R15), so I put a second argument in a variable to detect if the player is an R6 or R15 (if it finds “HumanoidRootPart” or " Torso "), but it didn’t work:
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local charted = char.Torso or char.HumanoidRootPart --> Err:
--Torso is not a valid member of Model <--
--code
end)
Go to Plugins>Build Rig (Fairly certain this is default in all Studio installs) and build an R6 Rig. It’ll have a HumanoidRootPart. Alternatively, if you hit Play and look in your character, it’ll also have a HumanoidRootPart. I’m guessing most of the ones in the toolbox simply might not because they’re outdated/old, but in any in-game scenario all characters regardless of their avatar type will have a HumanoidRootPart.
So in your script, all you need to check for is a HumanoidRootPart. All players in-game/studio will have it.
You wouldn’t need to and shouldn’t duplicate code. If you get to that point, you’ve architectured your code wrongly and should look into changing that up so that you don’t have to use the exact same code in two different areas just because you’re using a different rig type.
You only need to know if rigs are in R6 or R15 if you are dependent on the limbs for various features (e.g. animations, limb reliance, etc). If you don’t need to know what rig a user has specifically and you just want to make it work for both R6 and R15 characters, use the HumanoidRootPart as that is constant between all rig constructs.
That’s what I said, yes. If you read the post carefully and intake the information, you might be able to understand it better.
In summary: scripts that need to work on characters regardless of rig type and that aren’t dependent on the limbs of a character can just use HumanoidRootPart so that it works for both types. If you need to be dependent on any character limbs that aren’t the character’s Head, then use RigType and make your code function such that it’s not duplicating parts.
For example: if the Torso’s a pivotal part of your system and for R15 you would only need the UpperTorso (as Torso is split in two), use RigType to determine which part you use. A crude example (not one I’d actually use myself though):
local Torso do
local RigType = Humanoid.RigType
if RigType == Enum.RigType.R6 then
Torso = Character.Torso
elseif RigType == Enum.RigType.R15 then
Torso = Character.UpperTorso
end
end