Camera Manipulation

  1. What do you want to achieve? Keep it simple and clear!

When you join the game it will focus on the part called “FocusPart” .

  1. What is the issue? Include screenshots / videos if possible!

Doesn’t do it the script.

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?

Blockquote

wait(5)

local cam = workspace.CurrentCamera

local player = game.Players.LocalPlayer

local FocusPart = game.Workspace.FocusPart

cam.CameraType = “Fixed”

cam.Focus = game.Workspace.FocusPart

wait (5)

cam.Focus = player.Charater.Humanoid

Blockquote

Use cam.CameraSubject, cam.Focus is just where the system prioritizes rendering.

2 Likes

Apologies, I am not good at scripting. What does that mean?

Basically, the property focus just chooses where the system should render first, the CameraSubject is what the camera follows. The documentation is your friend.
Script:

wait(5)

local cam = workspace.CurrentCamera

local player = game.Players.LocalPlayer

local FocusPart = game.Workspace.FocusPart

cam.CameraType = “Fixed”

cam.CameraSubject = game.Workspace.FocusPart

wait (5)

cam.CameraSubject = player.Charater.Humanoid