-- 1x1x1x1 Style Hack GUI with Show/Hide by xBaconVoid1337 local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "OneXOneGui" gui.ResetOnSpawn = false -- Toggle Button local toggleButton = Instance.new("TextButton", gui) toggleButton.Size = UDim2.new(0, 120, 0, 30) toggleButton.Position = UDim2.new(0, 10, 0, 10) toggleButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) toggleButton.TextColor3 = Color3.new(0, 0, 0) toggleButton.Text = "Show 1x1x1x1" toggleButton.Font = Enum.Font.GothamBold toggleButton.TextSize = 14 local toggleStroke = Instance.new("UIStroke", toggleButton) toggleStroke.Color = Color3.fromRGB(255, 0, 0) toggleStroke.Thickness = 1 -- Main Draggable Frame (Initially hidden) local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 250, 0, 400) frame.Position = UDim2.new(0.1, 0, 0.2, 0) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.Active = true frame.Draggable = true frame.Selectable = true frame.Visible = false Instance.new("UIStroke", frame).Color = Color3.fromRGB(255, 0, 0) -- Title and Footer local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 30) title.Position = UDim2.new(0, 0, 0, 0) title.Text = "1x1x1x1 Style Hack" title.TextColor3 = Color3.new(0, 0, 0) title.BackgroundColor3 = Color3.fromRGB(255, 0, 0) title.Font = Enum.Font.GothamBlack title.TextSize = 16 Instance.new("UIStroke", title).Color = Color3.fromRGB(255, 0, 0) local footer = Instance.new("TextLabel", frame) footer.Size = UDim2.new(1, 0, 0, 20) footer.Position = UDim2.new(0, 0, 1, -20) footer.Text = "By xBaconVoid1337" footer.TextColor3 = Color3.new(0, 0, 0) footer.BackgroundColor3 = Color3.fromRGB(255, 0, 0) footer.Font = Enum.Font.Gotham footer.TextSize = 14 Instance.new("UIStroke", footer).Color = Color3.fromRGB(255, 0, 0) -- Create Button Function local function createButton(name, y, callback) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(1, -10, 0, 30) btn.Position = UDim2.new(0, 5, 0, y) btn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) btn.TextColor3 = Color3.new(0, 0, 0) btn.Text = name btn.Font = Enum.Font.GothamBold btn.TextSize = 14 Instance.new("UIStroke", btn).Color = Color3.fromRGB(255, 0, 0) btn.MouseButton1Click:Connect(callback) end -- Button Actions createButton("1x1x1x1 Message", 40, function() game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage", { Text = "1x1x1x1 has returned..."; Color = Color3.fromRGB(255, 0, 0); Font = Enum.Font.GothamBlack; FontSize = Enum.FontSize.Size96; }) end) createButton("Night", 80, function() game.Lighting.ClockTime = 0 end) createButton("Disco", 120, function() while wait(0.1) do game.Lighting.Ambient = Color3.fromHSV(math.random(),1,1) end end) createButton("1x1x1x1 Music", 160, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://1837635126" s.Looped = true s:Play() end) createButton("666 Fire Forever", 200, function() while true do for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") and not part:FindFirstChildOfClass("Fire") then local f = Instance.new("Fire", part) f.Size = 5 f.Heat = 10 end end wait(1) end end) createButton("2006 Music", 240, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://142376088" s.Looped = true s:Play() end) createButton("1x1x1x1 Laugh", 280, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://12222225" s:Play() end) createButton("Epic Sax Guy", 320, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://130775431" s.Looped = true s:Play() end) createButton("FF Protection", 360, function() local char = player.Character if char and not char:FindFirstChild("ForceField") then Instance.new("ForceField", char) end end) -- Toggle Button Logic toggleButton.MouseButton1Click:Connect(function() frame.Visible = not frame.Visible toggleButton.Text = frame.Visible and "Hide 1x1x1x1" or "Show 1x1x1x1" end)