I hate rthro, it looks disgusting to me.
I want to disable it in my game but havent found a way to do it
I hate rthro, it looks disgusting to me.
I want to disable it in my game but havent found a way to do it
I don’t think you can unfortunately.
Make a script and store rthro bundle ids there
Kick the players if they are wearing rthro
Or use a startercharacter
Rthro is glorified R15, so you could disable rthro by setting Avatar Type to R6, but uhh… that’s easier said than done.
If your game relies on characters using R15 then you’re probably out of luck…
Good thing to show a screenshot as a example.
unfortunately this wouldn’t work as my game relies on r15
there are new rthro bundles being made constantly as UGC creators can now upload them, i wont be able to add all of them to the list.
This is the worst idea ever. It would just get rid of a bunch of people.
Install a package remover, or apply the humanoid description manually and remove any bundles.
In the avatar config under game settings, click the “classic scale” option. This will scale all R15 and Rthro characters to the same weight, width, proportions, etc.
Where do I find these settings? There are so many different settings pages between studio vs web, game vs place, etc. It’s such a mess.
You can delete any packages if the meshes are made after 2020 (2018 if you want to rid of EVERY rthro but it will include the neo classic packages too and a lot of people wear those). Also do the same with the head mesh. Here’s how I did it;
You can disable Rthro by making a script and putting it into ServerScriptService
local Players = game.Players
function PlayerJoined(Player)
local function RemoveMeshes(Character)
local Humanoid = Character:WaitForChild("Humanoid")
wait()
local CurrentDescription = Humanoid:GetAppliedDescription()
CurrentDescription.Head = 0
CurrentDescription.Torso = 0
CurrentDescription.LeftArm = 0
CurrentDescription.RightArm = 0
CurrentDescription.LeftLeg = 0
CurrentDescription.RightLeg = 0
Humanoid:ApplyDescription(CurrentDescription)
end
Player.CharacterAdded:Connect(RemoveMeshes)
end
Players.PlayerAdded:Connect(PlayerJoined)
This script makes all the players blocky even in R6