Look Line 126
001 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
002 | local QuestLibraries = ReplicatedStorage:FindFirstChild( "QuestLibraries" ) |
003 |
004 | -- Libraries -- |
005 | local Dialogs = require(QuestLibraries:FindFirstChild( "Dialogs" )) |
006 | local Quests = require(QuestLibraries:FindFirstChild( "Quests" )) |
007 |
008 | -- Variables |
009 | local QuestGUI = ReplicatedStorage:FindFirstChild( "QuestDialog" , true ) |
010 | local QuestTag = ReplicatedStorage:FindFirstChild( "QuestTag" , true ) |
011 | local Quest = script.Configurations.Quest.Value |
012 | local Enabled = script.Configurations.QuestEnabled.Value |
013 |
014 |
015 | -- create quest folder function -- |
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?