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

How do I load three GUIs one at a time, and fix camera not wanting to be scriptable?

Asked by 3 years ago

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.

01game.StarterGui.MainMenu.Frame.Visible = true
02 
03local player = game.Players.LocalPlayer
04local character = player.CharacterAdded
05local mouse = player:GetMouse()
06local camera =  game.Workspace.CurrentCamera
07local defaultCFrame = camera.CFrame
08local view = 150
09 
10function updateCamera()
11    camera.CFrame = game.Workspace.CameraPart.CFrame
12end
13wait(0.1)
14game.Workspace.CameraPart.Sound.Playing = true
15 
View all 26 lines...
1script.Parent.MouseButton1Click:Connect(function()
2    script.Parent.Parent:Destroy()
3end)
4 
5game.StarterGui.NoteFromJoey.Frame.Visible = true
1script.Parent.MouseButton1Click:Connect(function()
2    script.Parent.Parent:Destroy()
3end)

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.

Answer this question