How to make an actor pull players towards it

Right now I have a hitbox that is called a pullbox and when players overlap with it they should get pulled towards the center. Right now it just teleports them above it to the right.

You are on the right track.

Instead of calling teleport, you could “apply force” to the player actor (in direction of the center, of course). This would push them for a certain amount of force instead of warping them.
You could even make the force depend on the distance of the center, so that the pull gets stronger the closer you are to the center :slight_smile: