Camera How to unscript it once your character fully loaded in Main Menu

my script

local CameraPart = game.Workspace:WaitForChild(“MainMenu”):WaitForChild(“MainCamera”):WaitForChild(“CurrentCamera”).CFrame
repeat wait()
CameraF.CameraType = Enum.CameraType.Scriptable
until CameraF.CameraType == Enum.CameraType.Scriptable
CameraF.CFrame = CameraPart
Plr.CharacterAdded

2 Likes

Be more specific when you post here next time, this makes it easier for people to help you
Anyways by the title I think you want to reset the camera back to default, simply doing this will work:

— put this code where you want the camera to go back to normal 
local player = game.Players.LocalPlayer
CameraF.CFrame = player.Character.HumanoidRootPart.CFrame — focus on player
CameraF.CameraType = Enum.CameraType.Custom — default camera rotation
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.