i have this script:
view source
i have this script:
local cam = game.Workspace.CurrentCamera local FocusPart = game.Workspace.CamPart local player = game.Players.LocalPlayer cam.CameraType = "Scriptable" cam.CFrame =CFrame.new(FocusPart.CFrame,FocusPart.CFrame,FocusPart.CFrame)
it adjusts the camera but not where i want it to be for some reason the camera goes way to the right of where i want it to be
Maybe try using this:
local cam = game.Workspace.CurrentCamera local FocusPart = game.Workspace.CamPart local player = game.Players.LocalPlayer cam.CameraType = Enum.CameraType.Scriptable cam.CFrame =CFrame.new(FocusPart.CFrame,FocusPart.CFrame,FocusPart.CFrame)
Try using Enum a little more!