What is the max body size of a player?

Hey everyone!
I don’t know if this is the right place to post such a thing, but I want to ask a question.
So basically, I have this game where you grow size every 60 seconds. I have a for loop that is like this:

for x = (size-1), 999, 1 do
		task.wait(60)
		Humanoid.BodyDepthScale.Value = tonumber(x) --Changing the values to x
		Humanoid.BodyHeightScale.Value = tonumber(x)
		Humanoid.BodyProportionScale.Value = tonumber(x)
		Humanoid.BodyTypeScale.Value = tonumber(x)
		Humanoid.BodyWidthScale.Value = tonumber(x)
		Humanoid.HeadScale.Value = tonumber(x)
end

And I wanted to ask if there is a player body size over 999 (for x = (size-1), 999 --This, 1 do)

Got any ideas?

If you want the full script do not hesitate to ask me.
Thank You.

3 Likes

The maximum size would be math.huge.