i'm using mouse.Hit.p and whenever i press E on my keyboard and it starts to print the same thing over and over but won't update the position of my mouse. How can i fix this?
The Print:
-5.58721495, 0, 3.2968421 (x546)
Script:
UIS.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.E then mouse.Move:Connect(function() print(mousePos) end) end end)