Forest Logo
search
package_2

wall

By @idoku

Roblox

Mirrored

wall

A small Roblox Luau package for creating anchored wall parts.

Install

With Wally:

[dependencies]
Wall = "idoku/wall@0.1.0"

Usage

local Wall = require(game.ReplicatedStorage.Packages.Wall)

Wall.create({
	Parent = workspace,
	Position = Vector3.new(0, 4, 0),
	Size = Vector3.new(20, 8, 1),
	Color = Color3.fromRGB(140, 140, 140),
})

Wall.createLine({
	Parent = workspace,
	Start = Vector3.new(-10, 0, 10),
	End = Vector3.new(10, 0, 10),
	Height = 8,
	Thickness = 1,
})

Wall.createRoom(workspace, Vector3.new(0, 0, 0), 30, 20, 8, 1)

API

Wall.create(options)

Creates a single Part.

Common options:

  • Parent
  • Name
  • Position
  • Size
  • Color
  • Material
  • Transparency
  • CanCollide
  • Anchored

Wall.createLine(options)

Creates one wall between Start and End.

Required:

  • Start
  • End

Optional:

  • Height
  • Thickness
  • All common wall options.

Wall.createRoom(parent, center, width, depth, height?, thickness?)

Creates four walls around center.

Publish

git init
git add .
git commit -m "Initial wall package"
git branch -M main
git remote add origin https://github.com/idoku/wall.git
git push -u origin main

If publishing to Wally:

wally publish

Package Details

Install command (Click to copy)


Version

0.1.0

License

MIT

check_circle

Safe for commercial use

Automated license review — not legal advice.