loadstring(game:HttpGet("https://raw.githubusercontent.com/Lakany/Secrets/refs/heads/main/V2"))() task.wait(0.1) --just in case local nahui = game.CoreGui:WaitForChild("HUI") local molynKeySystem = nahui:WaitForChild("MolynKeySystem") local mainPanel = molynKeySystem:WaitForChild("MainPanel") local leftSection = mainPanel:WaitForChild("LeftSection") local keyInputContainer = leftSection:WaitForChild("KeyInputContainer") local keyInput = keyInputContainer:WaitForChild("KeyInput") --lalalalala local resp = game:HttpGet("https://molyn.top/api/keys/fetch-key") local success, decoded = pcall(function() return game:GetService("HttpService"):JSONDecode(resp) end) local gotKey = "" if success then gotKey = decoded.key else --if that somehow didn't work gotKey = string.sub(resp, 9, -3) end keyInput.Text = gotKey local buttonContainer = leftSection:WaitForChild("ButtonContainer") local submitButton = buttonContainer:WaitForChild("SubmitBtn") task.wait(0.05) firesignal(submitButton.Mouse1ButtonClick)