MakeJoints (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy fixed |
>Camoy fixed |
||
Line 1: | Line 1: | ||
<onlyinclude>{{Method|name = MakeJoints | <onlyinclude>{{Method | ||
|name = MakeJoints | |||
|arguments = | |arguments = | ||
|returns = [[nil]] | |returns = [[nil]] | ||
|description = Creates a joint on any side of the object that has a surface ID that can make a joint. | |description = Creates a joint on any side of the object that has a surface ID that can make a joint. | ||
|object = | |object = BasePart, Model, Workspace | ||
}}</onlyinclude> | }}</onlyinclude> | ||
{{clear floats}} | {{clear floats}} | ||
== Description == | == Description == | ||
MakeJoints forms a bond (a joint) between bricks if they have the required surfaces types: | MakeJoints forms a bond (a joint) between bricks if they have the required surfaces types: | ||
Line 36: | Line 39: | ||
model:MakeJoints() | model:MakeJoints() | ||
</pre>}} | </pre>}} | ||
[[Category:Methods]] | [[Category:Methods]] |
Revision as of 23:56, 25 December 2010
![]() | |
Returns | nil |
Description: | Creates a joint on any side of the object that has a surface ID that can make a joint. |
Member of: | BasePart, Model, Workspace |
Description
MakeJoints forms a bond (a joint) between bricks if they have the required surfaces types:
SurfaceType | Weld | Universal | Studs | Inlet | Glue | Smooth |
Weld | Weld | Weld | Weld | Weld | Weld | Weld |
Universal | Weld | Snap | Snap | Snap | Glue | No Joint |
Studs | Weld | Snap | No Joint | Snap | Glue | No Joint |
Inlet | Weld | Snap | Snap | No Joint | Glue | No Joint |
Glue | Weld | Glue | Glue | Glue | Glue | Glue |
Smooth | Weld | No Joint | No Joint | No Joint | Glue | No Joint |
Brick Form:
Example
brick = game.Workspace.Brick brick:MakeJoints()
Model Form:
Example
model = game.Workspace.Model model:MakeJoints()