08-07-2011, 08:43 PM
Can anyone edit the Helicopter tool to launch rockets?like a KeyDown Function?
Helicopter tool help
|
08-07-2011, 08:43 PM
Can anyone edit the Helicopter tool to launch rockets?like a KeyDown Function?
08-07-2011, 09:27 PM
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.
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) |
« Next Oldest | Next Newest »
|