How to make Doors vent?

What do i want to achieve? So you know Doors vent (they got removed but you can find them in basement) how when you enter the went and press “e” you kick the vent door, how do i do this effect?

video: https://youtu.be/oZOv7kwo9zc?t=8

The problem? idk how to do it, I have tried some stuff but its trash

If you know feel free to help

1 Like

Have a ProximityPrompt and once triggered, ApplyImpulse on it

profimitypromtp.Triggered:Connect(function()
    part:ApplyImpulse(Vector3.new(10000, 0, 0))

something like this?

1 Like