Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a custom Camera from a part?

Asked by 3 years ago

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

01local Camera = workspace.CurrentCamera
02 
03local PlayButton = game.StarterGui.MainMenu.Frame.PlayBTN
04 
05function Camer()
06    repeat wait()
07        Camera.CameraType = Enum.CameraType.Scriptable
08    until
09    Camera.CameraType == Enum.CameraType.Scriptable
10    end
11 
12 
13 
14    script.Parent.MouseButton1Click:Connect(function()
15    Camera.CameraType = Enum.CameraType.Custom
16    script.Parent.Parent.Visible = false
17end)

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.

0
What exactly are you trying to accomplish with Scriptable Cameratype. You seem to change it to scriptable and not do anything more with it. JustinWe12 723 — 3y
0
And I dont think there is a point in having the Camer() function JustinWe12 723 — 3y

Answer this question