Hey there, I've been looking for the enum.keycode for right click without using the mousebuttondown function, any help?
It's not a keycode. When using mouse buttons in a GUI, use:
1 | (path of GUI).MouseButton 2 Down:Connect( function (RCLICK) |
And when using mouse buttons on a physical object, use:
1 | (path of Objct).Button 2 Down:Connect( function (RCLICK) |
Haven't scripted for a while, hope it works, and let me know if it doesn't!