how to decrease lag when making fake hands?
so i am making fake hands for my fps game this is the code:
1 | game:GetService( "RunService" ).RenderStepped:Connect( function () |
2 | mytool = character:FindFirstChildOfClass( "Tool" ) |
4 | righthand:SetPrimaryPartCFrame(mytool.tool.righthand.CFrame) |
5 | lefthand:SetPrimaryPartCFrame(mytool.tool.lefthand.CFrame) |
6 | mytool.tool:SetPrimaryPartCFrame(camera.CFrame) |
7 | game.ReplicatedStorage.look:FireServer(camera.CFrame.LookVector.Y) |
so in line 6 it moves the gun it works well 0 lag moves when i move but right before it one line 5 and 4 it moves the hands but the hands are laggy and when i move they move late so they go to right where they should have been 1 frame ago how do i fix this?