attempt to call a nil value?
Hey guys so I have been making a code that will enlarge a on screen gui in a fancy way, currently just testing to see if it works but I can't get it to work. Whenever I click the start button it says in output attempt to call a nil value!
Here is the code:
01 | Start = script.Parent.StartButton |
02 | CourseSelect = script.Parent.CourseSelect |
03 | Start.MouseButton 1 Down:connect(ClickedStart) |
04 | target = game.Workspace.SpawnLocation |
05 | camera = workspace.CurrentCamera |
06 | camera.CameraType = Enum.CameraType.Scriptable |
07 | camera.CameraSubject = target |
13 | camera.CoordinateFrame = CFrame.new(target.Position) |
14 | * CFrame.new( 20 , 5 , 20 ) |
15 | * CFrame.Angles( 0 , -. 3 , 0 ) |
17 | function ClickedStart() |
18 | for GuiSize = 1 , 30 do |
20 | CourseSelect.Size = CourseSelect.Size +UDim 2. new( 0.05 , 0.05 , 0 , 0 ) |
It's in a local script and I'm kinda new so if anyone has any suggestions. This is basically suppose to change the camera angle and when you click start make a little textbox open in a fancy way!