Button1Up (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Emess
No edit summary
>Emess
No edit summary
(No difference)

Revision as of 17:36, 10 May 2011

Button1Down ( )
Description Fired when the mouse is in the left mouse up state.
Member of: Mouse
Example
--a script inside of a HopperBin
local bin = script.Parent 
local function hSelect(m)
  local function bup()
    print("Button1Up")
  end
  m.Button1Up:connect(bup) --connection
end
bin.Selected:connect(hSelect)