How to apply force to a object

Hello, I need help trying to make a pass system basically I’m not sure what to use to make the ball have a force like it is being thrown, and also bounce off of walls easily. I just need to know what to use to do that. Thank you.

2 Likes

Is this what you’re looking for?!

local Part = Instance.new("Part", workspace)
Part:ApplyImpulse(Vector3.new(0, 100, 0))
2 Likes

Sorry I didn’t see ur message (haven’t been on for a while) I ended up using a VectorForce that decreased every time through a loop but ty anyways.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.