|
| 18 Jan 2014 12:09 PM |
make something happen when u relase the mouse on a tool? im a little confused.. script.Parent.Activated:connect(function() script.Parent.acteeve.Value = true end) how would I make it so that it makes "acteeve" false when they release the mouse? |
|
|
| Report Abuse |
|
Kingmouli
|
  |
| Joined: 28 Sep 2012 |
| Total Posts: 1292 |
|
|
| 18 Jan 2014 12:12 PM |
In a tool:
script.Parent.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() script.Parent.acteeve.Value = true end) mouse.Button1Up:connect(function() script.Parent.acteeve.Value = false end) end) |
|
|
| Report Abuse |
|