basically whenever someone enters in his zone he starts doing so
Use a boolean variable when the player enters the zone. I'll name it "zoneEntered"
part = -- your part here zoneEntered = false -- set to true when player enters the zone while wait() do if zoneEntered then part.CFrame = CFrame.lookAt(part.Position, player.Head.Position) -- change player to the player's character end end
I typed everything on mobile so let me know if there's errors