How do I load three GUIs one at a time, and fix camera not wanting to be scriptable?
What I'm after is when you first load into the game a GUI will come up that stats that it's in BETA testing once they click I agree the GUI will disappear and go to another GUI that's the startmenu, once they click "Play Chapter One" it'll open a new GUI that gives some backstory on the game and then click the imagebutton and it'll return to the character.
01 | game.StarterGui.MainMenu.Frame.Visible = true |
03 | local player = game.Players.LocalPlayer |
04 | local character = player.CharacterAdded |
05 | local mouse = player:GetMouse() |
06 | local camera = game.Workspace.CurrentCamera |
07 | local defaultCFrame = camera.CFrame |
10 | function updateCamera() |
11 | camera.CFrame = game.Workspace.CameraPart.CFrame |
14 | game.Workspace.CameraPart.Sound.Playing = true |
16 | game:GetService( "RunService" ).RenderStepped:Connect(updateCamera) |
18 | script.Parent.Frame.Play.MouseButton 1 Click:Connect( function () |
20 | camera.CameraType = Enum.CameraType.Custom |
21 | script.Parent.Frame:Destroy() |
22 | game.Workspace.MenuCamera.Sound.Playing = false |
26 | game.StarterGui.NoteFromJoey:Destroy() |
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | script.Parent.Parent:Destroy() |
5 | game.StarterGui.NoteFromJoey.Frame.Visible = true |
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | script.Parent.Parent:Destroy() |
These are all the scripts I have, I don't exactly know how to go about making them load one at a time, I'm also having trouble with the camera not wanting to be scriptable.