Better | Fe Giant Tall Avatar Script
-- Scale parts and adjust Motor6D C0/C1 for _, part in ipairs(character:GetDescendants()) do if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then part.Size = part.Size * scale -- Optionally set density/massless for stability pcall(function() part.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0) end) elseif part:IsA("Motor6D") then part.C0 = part.C0 * CFrame.new(0,0,0) * CFrame.new(part.C0.Position * (scale - 1)) part.C1 = part.C1 * CFrame.new(0,0,0) * CFrame.new(part.C1.Position * (scale - 1)) end end
: Some scripts use a method to "destroy" standard scaling properties. By removing the OriginalSize and OriginalScale attributes from body parts, the script prevents the game from resetting the character to its default size. fe giant tall avatar script better





