-- made by unable (taken from the src of one of his personal scripts) -- this is probably unsafe but whatever local coregui = cloneref(game:GetService("CoreGui")) local players = cloneref(game:GetService("Players")) local player = players.LocalPlayer local hiddenui = gethui() or coregui local playergui = player:WaitForChild("PlayerGui") local deltabutton for _, screengui in ipairs(hiddenui:GetChildren()) do local button = screengui:FindFirstChildWhichIsA("ImageButton") if button and button.Image == "rbxasset:///logo.png" then deltabutton = button end end local container = coregui.TopBarApp.TopBarApp.MenuIconHolder if deltabutton then deltabutton:FindFirstChildWhichIsA("UICorner"):Destroy() deltabutton:FindFirstChildWhichIsA("UIStroke"):Destroy() deltabutton.BorderSizePixel = 0 deltabutton.Image = "" deltabutton.BackgroundTransparency = 0.08 deltabutton.AutoButtonColor = false deltabutton.BackgroundColor3 = Color3.fromRGB(18, 18, 21) deltabutton.Parent = container deltabutton.Size = UDim2.new(0, 44, 0, 44) deltabutton.Position = UDim2.new(0, 52, 0, 2) coregui.TopBarApp.TopBarApp.UnibarLeftFrame.UnibarMenu.Position = UDim2.new(0, 52, 0, 0) Instance.new("UICorner", deltabutton).CornerRadius = UDim.new(1, 0) local logo = Instance.new("ImageLabel") logo.Parent = deltabutton logo.BackgroundTransparency = 1 logo.Image = "rbxasset:///logo.png" logo.Position = UDim2.new(0.5, 0, 0.5, 0) logo.Size = UDim2.new(0, 33, 0, 33) logo.AnchorPoint = Vector2.new(0.5, 0.5) end