This site is very new, and thus does not have a lot of documentation. Contributions are greatly appreciated!

Roblox humanoid bugs

This website serves as a central knowledgebase to document known bugs with humanoids and how to work around them. This list is updated often.

Contributing

If you know of a humanoid bug and it is not documented here on this site, or you see outdated/missing information, please submit a pull request or submit an issue. When submitting pull requests for undocumented humanoid bugs, please ensure the following:

  • The bug has a detailed description and enough information to be of use. Developers will be referencing this site to save time when facing issues with avatars!
  • Any new symptoms that the bug causes are documented in the symptoms section
  • Any links to relevant bug reports that have been filed on the developer forums are included.

Bug format

When adding a bug to this list, please use the following format:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## Name of bug

Bug description goes here. It should be clear and concise, explaining what causes the bug, symptoms, etc.

** Workarounds **

Describe the various workarounds to the bug here. As with the description of the bug, they should be clear and concise.

??? bug "Reproduction"
    ```lua
    print("Code reproduction goes here.")
    ```

    ** Bug report thead ** : [link to bug report on devforums](https://devforum.roblox.com/Blahblah)

<hr/>

Symptom format

When adding a symptom to the symptoms list, please use the following format:

1
2
3
4
5
6
7
8
9
## Name of symptom

Symptom description goes here. It should be clear and concise, explaining the effects of the symptom.

** Possible causes **

Possible causes should be explained here. Any relevant humanoid bugs should be linked to here.

<hr/>

Extra stuff

This site uses markdown material extensions for extra capabability. For example, you can make use of admonition blocks when writing documentation, like so:

Warning

If the humanoid does a barrel roll, then the server will flip upside down. In order to avoid this, please avoid making humanoids do a barrel roll.