Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Exceeding the maximum size a part can reach?

Asked by
neoG457 315 Moderation Voter
8 years ago

I'm trying to make a sea however the part doesnt seem to past the size:

2048, 4, 2048

part = Instance.new("Part", workspace)

part.Size = Vector3.new(10000, 4, 10000)

Is there a way to go further than this?

2
There are probably better solutions to this problem. For instance, what about making a SkyBox that gives the illusion of an ocean, and then having your "real" ocean slowly fade away in the distance? nicemike40 486 — 8y
1
It is not possible. Not even editing the .rbxm in notepad works. Upon inserting a (10000,4,10000) Part into Workspace, Studio automatically downsizes it to (2048, 4, 2048). XAXA 1569 — 8y

1 answer

Log in to vote
1
Answered by
azabat 10
8 years ago

You could put multiple of these blocks together.

Additionally, you could use a mesh and max out the scale for it. xLEGOx did that in one of his RPGs to create a pseudo-infinite plane.

Ad

Answer this question