Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I make the camera still so that players can not move it? [closed]

Asked by 7 years ago

In popular games that change the person's camera, you can't move it. If you use the camera type "Attach", you can move it up an down. I want it to stay still and focus on a certain object instead of players being able to move it up and down. Is there anyway I can do that?

Locked by OldPalHappy

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

1 answer

Log in to vote
6
Answered by 7 years ago
Edited 7 years ago

Set the CameraType to Scriptable.

--// This can only be done in a Local Script
local cam = workspace.CurrentCamera
cam.CameraType = Enum.CameraType.Scriptable

More detail.

0
I corrected a small typo. OldPalHappy 1477 — 7y
Ad