Как создать Камера меню в роблокс студио
((скрипт)) local camera = workspace.CurrentCamera local playButton = script.Parent.PlayButton repeat wait () camera.CameraType = Enum.CameraType.Scriptable print(camera.CameraType) until camera.CameraType == Enum.CameraType.Scriptable camera.CFrame = workspace.CameraFocusPart.CFrame playButton.MouseButton1Click:Connect(function() camera.CameraType = Enum.CameraType.Custom playButton:Destroy() end)