I am trying to create a script that only shows a tutorial once (tutorial does not reappears when player dies). This is what I have tried;
Image = script.Parent.ImageLabel TutorialAsk = script.Parent["Would you like to take the tutorial?"] GUIYes = script.Parent.Yes GUINo = script.Parent.No Game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:wait() -- Main controller for the GUIs Image.Visible = true -- Loads the intro wait(4) if Image == true then Image.Visible = false TutorialAsk.Visible = true GUIYes.Visible = true GUINo.Visible = true end --Show & remove GUI end)
Please add something like steps, and tell me where to insert the different scripts.