-- Create the main screen GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "TreasuryGui" screenGui.ResetOnSpawn = false screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Blue rounded background frame (container) local blueBackground = Instance.new("Frame") blueBackground.Name = "BlueBackground" blueBackground.Size = UDim2.new(0, 420, 0, 220) blueBackground.Position = UDim2.new(0.5, -210, 0.5, -110) blueBackground.BackgroundColor3 = Color3.fromRGB(0, 102, 204) -- Blue blueBackground.Active = true blueBackground.Draggable = true blueBackground.Parent = screenGui local bgCorner = Instance.new("UICorner") bgCorner.CornerRadius = UDim.new(0, 16) bgCorner.Parent = blueBackground -- Black box inside the blue background local blackBox = Instance.new("Frame") blackBox.Name = "BlackBox" blackBox.Size = UDim2.new(0, 400, 0, 200) blackBox.Position = UDim2.new(0, 10, 0, 10) blackBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0) blackBox.Parent = blueBackground local boxCorner = Instance.new("UICorner") boxCorner.CornerRadius = UDim.new(0, 16) boxCorner.Parent = blackBox -- Cyan title label local title = Instance.new("TextLabel") title.Name = "Title" title.Size = UDim2.new(1, 0, 0, 50) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundTransparency = 1 title.Text = "THE TREASURY'S END" title.TextColor3 = Color3.fromRGB(0, 255, 255) title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = blackBox