How do I make a custom Camera from a part?
So, I made a script for the play button at first the GUI wouldn't go away, but with some help it finally was able to go away; however now the camera is not letting me script it to be scriptable
01 | local Camera = workspace.CurrentCamera |
03 | local PlayButton = game.StarterGui.MainMenu.Frame.PlayBTN |
07 | Camera.CameraType = Enum.CameraType.Scriptable |
09 | Camera.CameraType = = Enum.CameraType.Scriptable |
14 | script.Parent.MouseButton 1 Click:Connect( function () |
15 | Camera.CameraType = Enum.CameraType.Custom |
16 | script.Parent.Parent.Visible = false |
This is the code I used to make the playbutton and the Camera. I'm not entirely sure what is going wrong, at first I didn't have it as a function and it still didn't work so I tried to do it as a function and it still didn't work lol. I need some help figuring out why it isn't working.