So i was playing the rake, i noticed that the camera is on the right how would i do this?
local Offset = Vector3.new(5, 0, 0)
local Humanoid = Character:WaitForChild("Humanoid")
local Camera = workspace.CurrentCamera
Camera.CameraSubject = Humanoid
Humanoid.CameraOffset = Offset
Probably something like this, the CameraSubject property needs to be set to the Humanoid in order to lock onto the Camera properly & adding an Offset with a Vector3 Value
1 Like
