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

Camera Manipulation Help?

Asked by
iLegitus 130
9 years ago

I tried

--[iLegimate]--

Player = game.Players.LocalPlayer
cam = game.Workspace.CurrentCamera

while true do
    wait()
    cam.CameraType = 6
    cam.CameraSubject = game.Workspace.DD
end

It works perfectly how i want it in solo mode,But in an actual server,It moves it to a different place (The camera),Help?

1 answer

Log in to vote
0
Answered by 9 years ago
Player = game.Players.LocalPlayer
cam = game.Workspace.CurrentCamera

while true do
    wait()
    cam.CameraType = 'Scriptable' -- Just helps to understand.. 
--(^^^^^^^^^^^^^^^^^^^^^^^^^^^, I believe this script will work with Custom also )
    cam.CameraSubject = game.Workspace.DD.Humanoid 
end

**NOTE : When your making a fix camera script you need the camera to goto a humanoid.

workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid

**

Hope this helps!! :D

Ad

Answer this question