Im trying to move the handle of a tool without it moving the player. Every time I do this in a local script, though, it moves the player as well. Example:
game:GetService("RunService").Heartbeat:Connect(function()
if script.Parent.Parent == game.Players.LocalPlayer.Character then
script.Parent.Handle.CFrame = camera.CFrame + Vector3.new(5,0,0)
end
end)
When I use this the player moves with the handle, and thats not the intended effect.