local Players = game:GetService("Players") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "tattlyNoIaGui" local function randomUglyColor() return Color3.fromRGB(math.random(0,255), math.random(0,255), math.random(0,255)) end local keyFrame = Instance.new("Frame", gui) keyFrame.Size = UDim2.new(0, 400, 0, 300) keyFrame.Position = UDim2.new(0.3, 0, 0.3, 0) keyFrame.BackgroundColor3 = randomUglyColor() local keyBox = Instance.new("TextBox", keyFrame) keyBox.Size = UDim2.new(0, 200, 0, 40) keyBox.Position = UDim2.new(0.25, 0, 0.2, 0) keyBox.Text = "typ da key bro" keyBox.BackgroundColor3 = randomUglyColor() local submitBtn = Instance.new("TextButton", keyFrame) submitBtn.Size = UDim2.new(0, 200, 0, 50) submitBtn.Position = UDim2.new(0.25, 0, 0.45, 0) submitBtn.Text = "clik 2 unlock giga" submitBtn.BackgroundColor3 = randomUglyColor() local errorText = Instance.new("TextLabel", keyFrame) errorText.Size = UDim2.new(0, 200, 0, 30) errorText.Position = UDim2.new(0.25, 0, 0.7, 0) errorText.Text = "" errorText.TextColor3 = Color3.new(1, 0, 0) errorText.BackgroundTransparency = 1 local spinImg = Instance.new("ImageLabel", gui) spinImg.Size = UDim2.new(0, 100, 0, 100) spinImg.Position = UDim2.new(1, -110, 0, 10) spinImg.Image = "rbxassetid://110110388659073" spinImg.BackgroundTransparency = 1 task.spawn(function() while true do spinImg.Rotation = (spinImg.Rotation + 6) % 360 task.wait(0.01) end end) local function makeUglyButton(parent, text, yPos) local btn = Instance.new("TextButton", parent) btn.Size = UDim2.new(0, 400, 0, 40) btn.Position = UDim2.new(0.1, 0, yPos, 0) btn.Text = text btn.BackgroundColor3 = randomUglyColor() btn.TextColor3 = Color3.new(1, 1, 0) btn.Font = Enum.Font.ArialBold btn.TextSize = 20 btn.TextWrapped = true btn.MouseButton1Click:Connect(function() btn.Text = "💀 bro its brok" end) end local function spawnRealGui() local mainGui = Instance.new("Frame", gui) mainGui.Size = UDim2.new(0, 500, 0, 500) mainGui.Position = UDim2.new(0.25, 0, 0.2, 0) mainGui.BackgroundColor3 = randomUglyColor() local title = Instance.new("TextLabel", mainGui) title.Size = UDim2.new(1, 0, 0, 30) title.Text = "FE BYPASS LOL 🔓 (real)" title.TextColor3 = Color3.new(1, 0, 0) title.BackgroundColor3 = randomUglyColor() title.TextScaled = true local btnTexts = { "decal spam (lag ur mom)", "skyboks chaos", "parrtikl spam 9000", "jumpscare (💩)", "char all go brrr", "skibidi toilet map add", "rickroll mode", "massive lag all", "admin flipper", "fart engine ☠️", "turn game 2 1995", "instant uglyify map" } for i, text in ipairs(btnTexts) do makeUglyButton(mainGui, text, 0.05 * i + 0.1) end end submitBtn.MouseButton1Click:Connect(function() if keyBox.Text ~= "sigma" then errorText.Text = "sory you no sigma" else keyFrame:Destroy() spawnRealGui() end end)