TruWorlds

Part

Inherits: PhysicsInstance

Properties

CastShadow boolean
Climbable boolean
local ladder = new Part()
ladder.Size = Vector3(1, 10, 0.25)
ladder.Climbable = true
ladder.Anchored = true
ladder.Parent = world
Color Color3
Material PartMaterial
local part = new Part()
part.Material = PartMaterial.Glow
part.Color = Color3(0, 0.5, 1)
part.Parent = world
Shape PartShape
local ball = new Part()
ball.Shape = PartShape.Ball
ball.Size = Vector3(3, 3, 3)
ball.Color = Color3().Random()
ball.Parent = world
Size Vector3