How to make Certain height limits for R15

Hello, I’m trying to make it where my Game is R15 so I can animate better but there’s a problem, With R15 u can make very small characters and I don’t want that, how would I make my game R15 but their height is R6 Height?

2 Likes
local players = game:GetService("Players")
local run = game:GetService("RunService")

players.PlayerAdded:Connect(function(player)
	player.CharacterAppearanceLoaded:Connect(function(character)
		run.Stepped:Wait()
		local humanoid = character:WaitForChild("Humanoid")
		if humanoid.RigType == Enum.HumanoidRigType.R15 then
			local heightScale = humanoid:WaitForChild("BodyHeightScale")
			if heightScale.Value < 1 then
				heightScale.Value = 1
			end
		end
	end)
end)

Relatively simple to achieve this, I’ve allowed R15 avatars larger than their R6 counterparts (scale above 1.0 is allowed).

Server script inside the ServerScriptService folder.

Click the Game Settings button that appears in studio under the “Home” tab. Your game has to be published to access these settings. Click the Avatar tab and there you can specify the range of avatar heights you allow in your place.
image

1 Like

there still able to make avatars like this even with the script

im trying to make it where thats not aloud

Their body height scale would still be 1, they’re just using a smaller package (smaller limbs), you’d need to blacklist said packages.

that would take forever to blacklist all of the bad stuff that makes the avatar small