I'm creating an enemy for my game, which is a sphere in a RigidBody3D. I'm trying to get it to roll towards the player, but I'm not too sure how. I've tried t make it face the player, but it won't do that and roll at the same time. Here is the code I have so far. If anyone has any insight, I would greatly appreciate it.

extends RigidBody3D

#The player character is put in this variable. It is how the we get the player's position
@export var target = Node3D
@export var speed = 1

var health = 1
var dis = Vector3.ZERO
var in_range = false

func _ready() -> void:
#This sets the point of activation. When the player gets close within range of this point, the sphere begins to move
dis = position

func _process(delta: float) -> void:
#The distance required to begin rolling
if Vector3(target.position.x, position.y, target.position.z).distance_to(dis) <= 10:
in_range = true
else:
in_range = false
if in_range:
#The code that actually makes the sphere roll
look_at(target.position, Vector3.UP, true)
constant_force = Vector3.FORWARD * -speed
constant_force = constant_force.rotated(Vector3.UP, rotation.y)
apply_central_force(constant_force)