local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TitleLabel = Instance.new("TextLabel") -- Properties for ScreenGui ScreenGui.Name = "ScreenGui Name," ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- Properties for Frame Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black background Frame.BorderColor3 = Color3.fromRGB(0, 255, 0) -- Green outline Frame.BorderSizePixel = 5 Frame.Size = UDim2.new(0, 600, 0, 400) Frame.Position = UDim2.new(0.5, -300, 0.5, -200) Frame.AnchorPoint = Vector2.new(0.5, 0.5) Frame.Active = true Frame.Draggable = true -- Enables dragging -- Properties for TitleLabel TitleLabel.Parent = Frame TitleLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) TitleLabel.BorderSizePixel = 0 TitleLabel.Size = UDim2.new(1, 0, 0, 50) TitleLabel.Font = Enum.Font.SourceSansBold TitleLabel.Text = "ScreenGui" TitleLabel.TextColor3 = Color3.fromRGB(0, 255, 0) -- Green text TitleLabel.TextSize = 24 TitleLabel.TextStrokeTransparency = 0 TitleLabel.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)