The question is simple: What is the best, most efficient and least buggiest way to resize an r15 character?
changing the bodyscale values inside the humanoid
game:GetService("Players").PlayerAdded:Connect(function(Player)
Player.Chatted:Connect(function(str)
local Hum = Player.Character.Humanoid
for i,v in pairs(Hum:GetChildren()) do
if (string.find(v.Name, "Scale")) then
v.Value = tonumber(str)
end
end
end)
end)
you can also just change them individually
1 Like