Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I remove bounce on collision from BaseParts?

Asked by
Voltoxus 248 Moderation Voter
9 years ago

Changing Elasticity of both objects still results in bouncing on collision any suggestions or ideas, please help.

1
I would wait for ROBLOX's updates on Material Physical Properties and work on their new Physics system. alphawolvess 1784 — 9y
0
is there like a way to kill velocity ? that could work Voltoxus 248 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

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.

Ad

Answer this question