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:
(path of GUI).MouseButton2Down:Connect(function(RCLICK)
And when using mouse buttons on a physical object, use:
(path of Objct).Button2Down:Connect(function(RCLICK)
Haven't scripted for a while, hope it works, and let me know if it doesn't!