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

How do i free a player's camera??

Asked by 9 years ago

How do i make the camera be able to fly around freely without removing the player character? I tried game.Workspace.CurrentCamera.CameraSubject = nil but that doesn't work.

0
Try setting the player's character to nil. That is what Epix Inc Server Suite does to make your camera move. M39a9am3R 3210 — 9y
0
Go to Players and turn character auto loads off. When they join the game they have a free camera. You can use :LoadCharacter() to make the character spawn. When the player dies they don't respawn until you use :LoadCharacter() again. EzraNehemiah_TF2 3552 — 9y

2 answers

Log in to vote
0
Answered by
yumtaste 476 Moderation Voter
9 years ago

Try workspace.CurrentCamera.CameraType = Enum.CameraType.Fixed. This will allow the camera to freely move, and when you want the camera to go back to following the character, do workspace.CurrentCamera.CameraType = Enum.CameraType.Follow.

Ad
Log in to vote
0
Answered by 9 years ago
game.Players.PlayerName.CameraType = "Custom"

Answer this question