How could i bypass truss size limitations?

I know i could generate a new truss after it gets to the max Y size, But not sure how i would go about this.

local SizeY = 30000

local Size = Vector3.new(0, 2048, 0)
local Instancenew = Instance.new

for Index = 1, SizeY / 2048 do
local TrussPart = Instancenew("TrussPart")
TrussPart.Size = Size
TrussPart.Position = Vector3.new(0, Index, 0)
TrussPart.Parent = workspace
end

You can’ t bypass the limitations but you can make multiple trussparts to act as one
The code I gave you is an example and probably doesn’ t even work but reference your final one to this!