-- GUI --lucas local gui = Instance.new("ScreenGui", game.CoreGui) local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 160, 0, 180) frame.Position ...
TextBox.Size = UDim2.new(0.8, 0, 0.6, 0) -- 80% width, 60% height of the frame TextBox.Position = UDim2.new(0.1, 0, 0.1, 0) -- Centered horizontally, 10% down vertically in the frame ...