Currently, we cannot give clients network ownership of anchored parts, as it wouldn’t be of any use since no physics are applied to anchored parts. While indeed no physics are applied to anchored parts, there are some cases where the client needs the network ownership of an anchored part. I’ve just stumbled into one of those cases where the client needs to set the CFrame of a part every render step. (This is for a tool)
Several approaches to this problem are setting the CFrame on the server, setting the CFrame on each client, or setting the CFrame on the controlling client with network ownership. The first approach fails because there is no way to set the CFrame smoothly on the server. The second option also fails because the part stays stationary on the server, and it also requires a system on its own to make every client do the moving.
The third option can be achieved by using a BodyVelocity object with infinite force and power and 0 velocity; however, doing that causes strange behaviour and shaking; not using a body velocity causes the part to gradually move down due to gravity.
I believe that in this case, giving the clients Network Ownership of an anchored part would be the perfect solution; therefore, I would like to request it be allowed.