Probably the longest script I have made, and now open to the public. It builds a small room in under 10 seconds. Not detailed, but its nice enough to be a Cool Creation, am I right? (Script in ServerScriptStorage if you want to test)
wait(2)
local brick1 = Instance.new("Part", game.Workspace)
brick1.Name = "Floor"
brick1.Position = Vector3.new(-1.5, 0.5, -10)
brick1.Material = Enum.Material.Concrete
brick1.Size = Vector3.new(37, 1, 36)
wait(2)
local backWall = Instance.new("Part", game.Workspace)
backWall.Name = "BackWall"
backWall.Position = Vector3.new(-1.5, 11, -27.5)
backWall.Material = Enum.Material.Brick
backWall.BrickColor = BrickColor.new("Bright red")
backWall.Size = Vector3.new(35,20,1)
wait(2)
local leftWall = Instance.new("Part", game.Workspace)
leftWall.Name = "LeftWall"
leftWall.Position = Vector3.new(-19.5, 11, -10)
leftWall.Material = Enum.Material.Brick
leftWall.BrickColor = BrickColor.new("Bright red")
leftWall.Size = Vector3.new(1,20,36)
wait(2)
local rightWall = Instance.new("Part", game.Workspace)
rightWall.Name = "RightWall"
rightWall.Position = Vector3.new(16.5, 11, -10)
rightWall.Material = Enum.Material.Brick
rightWall.BrickColor = BrickColor.new("Bright red")
rightWall.Size = Vector3.new(1,20,36)
wait()
local model = Instance.new("Model", game.Workspace)
model.Name = "SmallRoom"
wait(1)
brick1.Parent = model
backWall.Parent = model
leftWall.Parent = model
rightWall.Parent = model