Game Guides > Game FAQ >  

How do you script tools and creations on Roblox

How do you script tools and creations on Roblox
TOOLS:
--------------------------
G = Instance.new("HopperBin") G.Parent = game.StarterPack G.BinType = PUT A NUMBER HERE 0-7

BRICK: (im guessing that's what u meant by creation)
------------
b = Instance.new("Part") b.BrickColor = BrickColor.new(42) b.Anchored = true b.Locked = true b.CanCollide = true b.Transparency = 0 b.Position = Vector3.new(1, 3, 5) b.Size = Vector3.new(2, 2, 2) b.Parent = Workspace