The lua example provided in the description of the UserInputService:IsMouseButtonPressed function page incorrectly formats comment.
Issue lies on line three of the code sample provided in the description see below.
// The UserInputType value passed is 0
should be
-- The UserInputType value passed is 0
Code sample
local UserInputService = game:GetService("UserInputService")
// The UserInputType value passed is 0
local pressed = UserInputService:IsMouseButtonPressed(0)
Error
Code sample w/ fix
local UserInputService = game:GetService("UserInputService")
-- The UserInputType value passed is 0
local pressed = UserInputService:IsMouseButtonPressed(0)