Valiant8
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 308 |
|
|
| 15 Mar 2013 03:51 PM |
local enabled=true local healing=true script.Parent.Equipped:connect(function(mouse) mouse.KeyDown:connect(function(k) if k=='b'then if enabled then enabled=false wait(1) game.Workspace.'Mark 1' , 'Mark 2' , 'Mark 3' , 'Mark 4':remove() wait(0.1) enabled=true end end end) end) |
|
|
| Report Abuse |
|
|
|
| 15 Mar 2013 03:54 PM |
local enabled=true local healing=true script.Parent.Equipped:connect(function(mouse) mouse.KeyDown:connect(function(k) if k=='' then if enabled then enabled=false wait(1) t = {'Mark 1','Mark 2','Mark 3','Mark 4'}; for i,v in pairs(t) do workspace[v]:Destroy() end wait(0.1) enabled=true end end end) end)
|
|
|
| Report Abuse |
|
|
|
| 15 Mar 2013 03:55 PM |
I removed the b by accident, my bad.
local enabled=true local healing=true script.Parent.Equipped:connect(function(mouse) mouse.KeyDown:connect(function(k) if k=='b' then if enabled then enabled=false wait(1) t = {'Mark 1','Mark 2','Mark 3','Mark 4'}; for i,v in pairs(t) do workspace[v]:Destroy() end wait(0.1) enabled=true end end end) end)
|
|
|
| Report Abuse |
|
|