I'm not sure if it's normal or not, but I can only switch the player's camera twice. But If they reset, they can do it twice again. One script, this one switches the player's camera to the part. The other switches it back to the player. In total, it will just switch to the part, and back to the player. Oh, yeah and I have a click detector with 2 scripts, than enable these, when clicked. Its a function, its the best way I could find out how to do it.
local Player = game.Players.LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local Camera = workspace:WaitForChild("Camera") local camera = workspace:WaitForChild("CameraPart") repeat wait() Camera.CameraType = Enum.CameraType.Scriptable until Camera.CameraType == Enum.CameraType.Scriptable Camera.CFrame = camera.CFrame script.Parent.CameraEnabler.Disabled = true
Unless I'm wrong, you could use TweenService on your camera to repeat it as many times as you want... If that's what you're asking.