Game being weird (Enum.RigType)

I don’t know what to say. Is ROBLOX having issues or something? Before you say I changed something, I didn’t.
Here’s a example:

image
It works in the original game, but whenever I copy it or publish it to another game it just breaks.

Firstly, you didn’t provide almost any information for us to work with. Second, some enum called “RigType” doesn’t exist. Did you mean HumanoidRigType?

1 Like

Apologies. Second - RigType exists. It works on the original game, but when I publish it somewhere else it breaks.

Oh, maybe it does exist but is deprecated. I don’t really know, searched it up on the Dev hub and it only shows HumanoidRigType

1 Like

It works in studio but not on the ROBLOX Client. Weird?

Maybe it has to do with a studio-only beta feature?

Maybe there was some API change and Roblox renamed it, they wouldn’t do this out of nowhere however unless it was deprecated for a long time enough

1 Like

You’re likely getting confused between the humanoid’s “RigType” property and the “HumanoidRigType” enumeration.

As you can see from the humanoid “RigType”'s documentation, its value type is that of a “HumanoidRigType” enumeration item.
https://developer.roblox.com/en-us/api-reference/property/Humanoid/RigType

Enum.RigType isn’t related to the humanoid’s rig type.

https://developer.roblox.com/en-us/api-reference/enum/RigType

1 Like