--// Blayt Scripts - Access System --// open source for a reason no loggers just discord link local gui = Instance.new('ScreenGui') gui.Name = 'BlaytAccessSystem' gui.Parent = game:GetService('CoreGui') gui.ResetOnSpawn = false local blur = Instance.new("BlurEffect") blur.Size = 20 blur.Parent = game.Lighting -- Background overlay local overlay = Instance.new('Frame') overlay.Size = UDim2.new(1, 0, 1, 0) overlay.BackgroundColor3 = Color3.fromRGB(0, 0, 0) overlay.BackgroundTransparency = 0.5 overlay.Parent = gui -- Main Frame local mainFrame = Instance.new('Frame') mainFrame.Size = UDim2.new(0, 400, 0, 320) mainFrame.Position = UDim2.new(0.5, -200, 0.5, -160) mainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 30) mainFrame.BorderSizePixel = 0 mainFrame.Parent = gui local corner = Instance.new('UICorner') corner.CornerRadius = UDim.new(0, 12) corner.Parent = mainFrame -- Title Bar local titleBar = Instance.new('Frame') titleBar.Size = UDim2.new(1, 0, 0, 40) titleBar.BackgroundColor3 = Color3.fromRGB(35, 35, 45) titleBar.BorderSizePixel = 0 titleBar.Parent = mainFrame local titleCorner = Instance.new('UICorner') titleCorner.CornerRadius = UDim.new(0, 12) titleCorner.Parent = titleBar local title = Instance.new('TextLabel') title.Size = UDim2.new(1, -40, 1, 0) title.Position = UDim2.new(0, 10, 0, 0) title.BackgroundTransparency = 1 title.Text = '🔒 BLAYT SCRIPTS ACCESS' title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 18 title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = titleBar -- Close Button local closeBtn = Instance.new('TextButton') closeBtn.Size = UDim2.new(0, 30, 0, 30) closeBtn.Position = UDim2.new(1, -35, 0, 5) closeBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) closeBtn.Text = '✕' closeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) closeBtn.Font = Enum.Font.GothamBold closeBtn.TextSize = 18 closeBtn.Parent = titleBar local closeCorner = Instance.new('UICorner') closeCorner.CornerRadius = UDim.new(0, 6) closeCorner.Parent = closeBtn closeBtn.MouseEnter:Connect(function() closeBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) end) closeBtn.MouseLeave:Connect(function() closeBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) end) closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) -- Key Input local keyBox = Instance.new('TextBox') keyBox.Size = UDim2.new(0.8, 0, 0, 45) keyBox.Position = UDim2.new(0.1, 0, 0, 70) keyBox.BackgroundColor3 = Color3.fromRGB(40, 40, 50) keyBox.PlaceholderText = 'Enter access key...' keyBox.Text = '' keyBox.TextColor3 = Color3.fromRGB(255, 255, 255) keyBox.Font = Enum.Font.Gotham keyBox.TextSize = 16 keyBox.ClearTextOnFocus = false keyBox.Parent = mainFrame local keyCorner = Instance.new('UICorner') keyCorner.CornerRadius = UDim.new(0, 8) keyCorner.Parent = keyBox -- Verify Button local verifyBtn = Instance.new('TextButton') verifyBtn.Size = UDim2.new(0.8, 0, 0, 45) verifyBtn.Position = UDim2.new(0.1, 0, 0, 125) verifyBtn.BackgroundColor3 = Color3.fromRGB(0, 120, 255) verifyBtn.Text = 'VERIFY ACCESS' verifyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) verifyBtn.Font = Enum.Font.GothamBold verifyBtn.TextSize = 16 verifyBtn.Parent = mainFrame local verifyCorner = Instance.new('UICorner') verifyCorner.CornerRadius = UDim.new(0, 8) verifyCorner.Parent = verifyBtn -- Get Key Button (Updated) local getKeyBtn = Instance.new('TextButton') getKeyBtn.Size = UDim2.new(0.8, 0, 0, 45) getKeyBtn.Position = UDim2.new(0.1, 0, 0, 180) getKeyBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 100) getKeyBtn.Text = '🔑 Get Key • Join Blayt Scripts' getKeyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) getKeyBtn.Font = Enum.Font.GothamBold getKeyBtn.TextSize = 15 getKeyBtn.Parent = mainFrame local getKeyCorner = Instance.new('UICorner') getKeyCorner.CornerRadius = UDim.new(0, 8) getKeyCorner.Parent = getKeyBtn -- Status Label local statusLabel = Instance.new('TextLabel') statusLabel.Size = UDim2.new(1, -20, 0, 40) statusLabel.Position = UDim2.new(0, 10, 1, -45) statusLabel.BackgroundTransparency = 1 statusLabel.Text = '' statusLabel.TextColor3 = Color3.fromRGB(255, 255, 255) statusLabel.Font = Enum.Font.Gotham statusLabel.TextSize = 13 statusLabel.TextWrapped = true statusLabel.Parent = mainFrame -- Discord Link local discordLink = "https://discord.gg/RqzQpza7" -- Verify Logic local function verifyKey(key) verifyBtn.Text = 'CHECKING...' verifyBtn.BackgroundColor3 = Color3.fromRGB(255, 150, 0) local success, correctKey = pcall(function() return game:HttpGet('https://raw.githubusercontent.com/Dwearty/MASTER-PASSWORD/main/password.txt'):gsub('%s+', '') end) if success and key == correctKey then statusLabel.Text = 'Access Granted! Loading script...' statusLabel.TextColor3 = Color3.fromRGB(0, 255, 100) -- Add your script loading code here else statusLabel.Text = 'Incorrect key. Join Discord for access!' statusLabel.TextColor3 = Color3.fromRGB(255, 100, 100) -- Shake animation for _ = 1, 6 do keyBox.Position = keyBox.Position + UDim2.new(0, 8, 0, 0) task.wait(0.05) keyBox.Position = keyBox.Position - UDim2.new(0, 16, 0, 0) task.wait(0.05) end keyBox.Position = UDim2.new(0.1, 0, 0, 70) keyBox.Text = '' keyBox:CaptureFocus() end verifyBtn.Text = 'VERIFY ACCESS' verifyBtn.BackgroundColor3 = Color3.fromRGB(0, 120, 255) end verifyBtn.MouseButton1Click:Connect(function() local key = keyBox.Text:gsub('%s+', '') verifyKey(key) end) keyBox.FocusLost:Connect(function(enterPressed) if enterPressed then local key = keyBox.Text:gsub('%s+', '') verifyKey(key) end end) -- Get Key Button getKeyBtn.MouseButton1Click:Connect(function() setclipboard(discordLink) statusLabel.Text = 'Discord link copied! Join for key & Premium (199 Robux)' statusLabel.TextColor3 = Color3.fromRGB(0, 255, 120) end) -- Auto focus task.wait(0.5) keyBox:CaptureFocus() print('Blayt Scripts Access System loaded')