I know how to spawn a new brick, but it never works anymore, can someone give me an example of it just in case I know I'm doing something wrong?
brick = Instance.new('Part', game.Workspace) brick.Name = 'Brick' --Do as much stuff as u like using 'brick' from above (the Variable that is equal to the New Brick)
brick = Instance.new("Part") brick.Name = "Brick" brick.Parent = game.Workspace