I need help to reset the camera

Hello, I need help with the camera. I want to reset the camera so the camera will go “normal” after a cutscene. Is there a way to reset it to “normal” with a script? So if you press the play button it will go back to the player?

so put this in a local script

game.GetService("UserInputService").InputBegan:Connect(function(v1, v2)
 if not v2 and v1.KeyCode == "Your Keycode/Button" then
  game.Workspace.Camera.CameraType = Enum.CameraType.Custom
 end
end)
2 Likes