how to remove r15 scaling roblox
local Players = game.Players
function PlayerJoined(Player)
local function RemoveMeshes(Character)
local Humanoid = Character:WaitForChild("Humanoid")
wait()
local CurrentDescription = Humanoid:GetAppliedDescription()
CurrentDescription.BodyTypeScale = 0
CurrentDescription.HeightScale = 1
CurrentDescription.ProportionScale = 0
Humanoid:ApplyDescription(CurrentDescription)
end
Player.CharacterAppearanceLoaded:Connect(RemoveMeshes)
end
Players.PlayerAdded:Connect(PlayerJoined)