local UIS = game:GetService("UserInputService")
function inputEnded(input)
if input.UserInputType == Enum.UserInputType.MouseMovement then
RotateEnabled.Value = true
end
end
UIS.InputEnded:Connect(inputEnded)
This fires when my mouse is outside of screen, not when i stop moving the mouse, any idea? That’s not entire script btw