local Q1 = Instance.new("ScreenGui") Q1.Parent = game.StarterGui local text = Instance.new("TextBox") text.Parent = Q1 text.BackgroundTransparency = 1 text.MultiLine = true text.Position = {0,200,0,200} text.Size = 0,200,0,200
The above text.Position and text.Size do not work. In what way do i put them?
Use UDim2
.
Heres the structure
UDim2.new( ScaleX, OffsetX, ScaleY, OffsetY)