#HOW TF DO I DO THIS
1 messages · Page 1 of 1 (latest)
whats the goal?
i think its player:GetMouse().1ButtonDown pretty sure
use UserInputType for mouse buttons
local player = game.Players.LocalPlayer
local input = game:GetService("UserInputService")
input.InputBegan:Connect(function(key,gpe)
if gpe then return end
if key.UserInputType == Enum.UserInputType.MouseButton1 then
print("Left Click")
end
end)
use IIAS