local ScreenGui = Instance.new("ScreenGui") ScreenGui.IgnoreGuiInset = true ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ScreenInsets = Enum.ScreenInsets.DeviceSafeInsets ScreenGui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") local TextLabel = Instance.new("TextLabel") TextLabel.TextWrapped = true TextLabel.TextStrokeTransparency = 0 TextLabel.BorderSizePixel = 0 TextLabel.TextScaled = true TextLabel.BackgroundColor3 = Color3.new(1.00, 1.00, 1.00) TextLabel.FontFace = Font.new("rbxasset://fonts/families/Roboto.json", Enum.FontWeight.Bold, Enum.FontStyle.Normal) TextLabel.TextStrokeColor3 = Color3.new(0.46, 0.46, 0.46) TextLabel.TextSize = 14 TextLabel.Size = UDim2.new(0.42, 0.00, 0.21, 0.00) TextLabel.BorderColor3 = Color3.new(0.00, 0.00, 0.00) TextLabel.TextColor3 = Color3.new(1.00, 1.00, 1.00) TextLabel.BackgroundTransparency = 1 TextLabel.Position = UDim2.new(0.29, 0.00, 0.00, 0.00) TextLabel.Parent = ScreenGui for i = 0,9999 do local formatted = string.format("%04d", i) local result = game.ReplicatedStorage.GlitchedPassword:InvokeServer(formatted) TextLabel.Text = "Trying "..formatted.." (Use this script in the lobby!)" if result then TextLabel.Text = "Success!" TextLabel.TextColor3 = Color3.fromRGB(23, 255, 108) game.ReplicatedStorage.Events.GlitchedGui:Fire() task.wait(3) ScreenGui:Destroy() end end