Roblox Wiki
Roblox Wiki
m (Reverted edits by 50.135.234.15 (talk | block) to last version by RyanDolan123)
Vvvtft56 (talk | contribs)
No edit summary
(26 intermediate revisions by 15 users not shown)
Line 1: Line 1:
  +
{{Stub}}
[[File:ImagesCAFRFTZD.jpg|thumb|Bricks or parts]]A part is one of the most common objects in ROBLOX. The parts common names are: "Smooth Block Model", "Brick" and most commonly "Part".[[File:Brick.png|thumbnail|A typical Part]]
 
  +
{{Infobox class| explorer order = 11}}
Almost always this is the most used Instance in Roblox.
 
[[File:Brick1.jpg|thumb|Blue Brick]][[File:Birck2.jpg|thumb|Gray Brick]][[File:Brick3.jpg|thumb|Red Brick]]
 
==Object Reference==
 
   
  +
A building block - the fundamental component of Roblox.
{{Instance|Part|{{VarList
 
  +
|v1=Boolean [[Anchored]] |d1=Determines whether the the part remains fixed relative to the origin
 
  +
== Properties ==
|v2=[[BrickColor]] |d2=The color of the brick
 
  +
|v3=CFrame [[CFrame]] |d3=The position and rotation of the brick
 
  +
|v4=Boolean [[CanCollide]] |d4=Determines whether the the part can collide with other parts
 
  +
|v5=Number [[Elasticity]] |d5 =Currently no functionality
 
  +
=== {{property|name=Shape|type=PartType}} ===
|v6=Number [[Friction]] |d6=Determines the slowing rate of a brick once a force acts on it
 
  +
|v7=Boolean [[Locked]] |d7=Determines whether the select tool can be used on this part
 
  +
== External links ==
|v8=[[Material]] |d8=Determines the material of a brick; i.e. wood, slate.
 
  +
|v9=Number [[Reflectance]] |d9=The reflectance of the part (0-1)
 
  +
* {{DevHub class link}}
|v10=[[ResizeIncrement]] |d10=The increment of which the part is resized when resized in the ROBLOX studio resize tool.
 
  +
* {{Roblox API Reference class link}}
|v11=[[ResizableFaces]] |d11=Which axis' are resizable
 
  +
[[Category:Pages that need to be improved]]
|v12=Vector3 [[RotVelocity]] |d12=The rotation velocity of the brick
 
|v13=[[Shape]] |d13=Determines the shape of a part (i.e. sphere, cylinder)
 
|v14=Vector3 [[Size]] |d14=The size of the part
 
|v15=Number [[Transparency]]|d15=The transparency of the part (0-1)
 
|v16=Vector3 [[Velocity]] |d16=The velocity of the part
 
|v17=[[formFactor]] |d17=Chooses basic template for ResizeIncrement, and ResizableFaces.}}
 
|{{VarList
 
|v1=[[BreakJoints]]|d1=Breaks any joints attached to the part
 
|v2=Number [[GetMass]]|d2=Gets the mass of the part, return number
 
|v3=[[MakeJoints]] |d3=Makes connective joints to all touching parts
 
|v4=[[Clone]] |d4=Clones
 
|v5=[[Remove]] |d5=Removes
 
|v6=Boolean [[IsA]] |d6=Shows the className of, return true/false
 
|v7=[[GetChildren]] |d7=Gets the children of
 
|v8=[[FindFirstChild]]|d8=Finds the first child given - findFirstChild(name of child)
 
|v9=String [[GetFullName]] |d9=Returns the path of the object, excluding the Game object
 
|v10=Boolean [[IsAncestorOf]] |d10=If the object is a parent of, return true/false
 
|v11=Boolean [[IsDescendantOf]] |d11=If the object is a child of, return true/false
 
}}
 
}}
 
[[Category:Lua Instance Objects]]
 

Revision as of 15:26, 24 December 2019

Stub
This article is a stub. You can help the Roblox Wiki by expanding it.

A building block - the fundamental component of Roblox.

Properties

Shape: PartType

External links