Posts: 24
Threads: 7
Joined: Aug 2011
Reputation:
0
Can anyone edit the Helicopter tool to launch rockets?like a KeyDown Function?
Posts: 3,002
Threads: 200
Joined: Mar 2011
Reputation:
0
The order and I have been talking lately whether to advance our military or to advance on Coke-flavored broccoli, we chose Coke-flavored broccoli, I'm afraid that we're not going to get that technology any time soon, so contact a scripter and see what he can do.
Posts: 13
Threads: 4
Joined: Aug 2011
08-07-2011, 09:43 PM
(This post was last modified: 08-07-2011, 09:52 PM by watermelonman.)
function keyDown(c, hit)
if c == "b" then
local bomb = create("Box")
bomb.Name = "Bomb"
bomb.Size = Vec2D(2, 5)
bomb.Position = script.Parent.Flier.Position
if bomb.hit.Type = "Character" or "Box" then
local ex = create("Explosion")
ex.Position = bomb.Position
end
end
end
At the end of the script:
link(script.Parent.KeyDown, keyDown)