I am just wondering if userinputservice.mosueenabled = true for laptops
Yes it also refers to laptops as well.
You can test like so:
local UserInputService = game:GetService("UserInputService")
if UserInputService.MouseEnabled == true then
print("Works for laptops")
else
warn("Does not work for laptops")
end
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.