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?
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