Help with Camera angle

Hi I want to achieve a FIFA like camera angle, But I have trouble getting the X,Y,Z property to work, if someone could guide me that would be great!

I am using a Camera Part to get the camera angle, if you could help it would be much appreciated.

I’m not sure what you mean by this, but if you’re wanting everyone’s camera angle to be at that part, you first need a local script, and input this code local cc = workspace.CurrentCamera local pc = workspace.PlayCam cc.CameraType = Enum.CameraType.Scriptable cc.CFrame = pc.CFrame
local pc being the instance of the part. just replace playcam with the name of your camera part, put it in a localscript and input it into starter player scripts. always use a CFrame when reading off values like that.

1 Like