Changing Elasticity of both objects still results in bouncing on collision any suggestions or ideas, please help.
Maybe you could do this:
local p = script.Parent p.Touched:connect(function() p.Anchored = true wait() p.Anchored = false end)
This is a script inside the part with no bouncing. Anchoring something makes it stay in place, so this could work.