So I'm making a game and I'm not sure, but I made a Clickdetector put in a script inside it and made a script
-- Locals: local ClickDetector = script.Parent ClickDetector.MouseClick:Connect(function(Player) local TextGui = Player.PlayerGui:FindFirstChild("TextGui") local Configurations = TextGui.Configuration if Configurations.Value3.Value == false then if Configurations.Value2.Value == true then TextGui.Frame.Visible = true TextGui.Frame.GeneratedText.Text = "Text." else print("Can't Skip") end else print(Player.Name.." Already Opened") end end)
When Value3 is false then it works but when it goes to value2 it says cant skip even tho its true could anyone help me? if you need me to explain more then comment
My bad I sent the wrong script without ClickDetector.MouseClick