---------------------------------------------------- --- A redistribution of https://wearedevs.net/ --- ---------------------------------------------------- --Made by gamermanaway local Players = workspace.Players local OldIndex = nil OldIndex = hookmetamethod(Players, "__index", function(Self, Key) if not checkcaller() and tostring(Self) == "Head" and Key == "Size" then return Vector3.new(10, 10, 10) end return OldIndex(Self, Key) end)