Okay. There is a game when you look through the door bricks appear. I don't know how to set if the player is looking that way then it appears. All I know is to put this in a local script
P = Instance.new("Part", game.Workspace.CurrentCamera) P.CFrame = CFrame.new(xVal,zVal,yValw) P.Size = Vector3.new(xVal,yVal,zVal)
Perhaps use a Function
function Camera() Brick = game.Workspace.Part Player = game.Workspace.findFirstChild(Humanoid) if Player.Position == {"X","Y","Z"} then Brick.Transparency = "0" wait(3.0) -- Put whatever number there end end Camera()
this may not work but it still might.