Need Tips & Tricks on 2000+ NPCs Optimization

maybe send just the positions of the characters and then you can compute their direction on the client as angled from their last position to the current position with

local ROTATE = CFrame.Angles(math.rad(180), math.rad(180), math.rad(180)) -- constant

CFrame.lookAt(currentPosition, lastPosition) * ROTATE
1 Like