789cab
|
  |
| Joined: 13 Jul 2009 |
| Total Posts: 3145 |
|
| |
|
789cab
|
  |
| Joined: 13 Jul 2009 |
| Total Posts: 3145 |
|
| |
|
|
| 05 Dec 2011 05:47 PM |
| Do you have the player's mouse? |
|
|
| Report Abuse |
|
|
|
| 05 Dec 2011 06:00 PM |
This is the basic of it:
function e(mouse) mouse.KeyDown:connect(function(key) key = string.lower(key) if key == "e" then --Put what happens here end end) end script.Parent.Equipped:connect(e) |
|
|
| Report Abuse |
|
|
|
| 05 Dec 2011 06:39 PM |
| the keyboard and stuff is a part of mouse? |
|
|
| Report Abuse |
|
|
|
| 05 Dec 2011 06:41 PM |
mouse can be anything: function e(ice) ice.KeyDown:connect(function(key) key = string.lower(key) if key == "e" then --Put what happens here end end) end script.Parent.Equipped:connect(e) |
|
|
| Report Abuse |
|
|