Camera not showing objects

I making menu for game like fnaf.

  1. What do you want to achieve?
    Camera look at house.
  2. What is the issue?
    https://youtu.be/2McFh6DRBRY
  3. What solutions have you tried so far?
    SO then i try to put camera in some part position. It dont help, Try to look maybe problem with properties. Still not.
local player = game.Players.LocalPlayer
local camera = workspace.CurrentCamera
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local playbutton = script.Parent.ButtonsFrame.PlayButton
local creditbtn = script.Parent.ButtonsFrame.CreditsButton
local extra = script.Parent.CreditsMenu
local buttonsframe = script.Parent.ButtonsFrame
local shadow = script.Parent.Shadow
local pointspawn = workspace:WaitForChild("Loadingpoint")
local campart = workspace:WaitForChild("campart")

camera.CameraType = Enum.CameraType.Scriptable
camera.CFrame = CFrame.new(914.969, 7.67, 56.641) * CFrame.Angles(0, math.rad(-90), 0)
humanoid.WalkSpeed = 0
humanoid.JumpPower = 0
character.HumanoidRootPart.CFrame = pointspawn.CFrame

playbutton.MouseButton1Click:Once(function()
	shadow.Visible = true
	humanoid.Health = 0
	humanoid.WalkSpeed = 16
	humanoid.JumpPower = 50
	buttonsframe.Visible = false
	extra.Visible = false
	camera.CameraType = Enum.CameraType.Custom
	task.wait(3)
	shadow.Visible = false
end)

Ok so i fix this (kinda). This problem similar to Minecraft. When objects ehhh i guess not rendering. So I Just make some builds put closer to position of camera but how can I make camera can see further?