how can i know what is the mouse velocity
also im not talking about sensitivity, im talking about how fast the mouse moves
Mouse.move and check the speed ig.
You can do Distance / Time to get the Speed.
Distance will be (lastPosition - currentPosition).Magnitude
And time will be Delta Time.
1 Like
I don’t think there is any way to check how fast the mouse is moving other than making something yourself. You could get the mouse position and then wait til the mouse stops moving.
Here is the API reference on the mouse: Mouse | Roblox Creator Documentation
This also might be helpful: UserInputService | Roblox Creator Documentation ( More-so for camera working )