zeke505
|
  |
| Joined: 26 May 2008 |
| Total Posts: 15765 |
|
|
| 08 Jul 2011 09:15 AM |
| I had a handle since I first started, brah |
|
|
| Report Abuse |
|
cymru72
|
  |
| Joined: 26 Jan 2008 |
| Total Posts: 4362 |
|
|
| 08 Jul 2011 09:18 AM |
>Be in Solo >Be annoyed because it doesn't work >Inserts Handle >Works >You deny it works >ARGHHNNAAAAARHDSJHS
Lemme test again. |
|
|
| Report Abuse |
|
myrco919
|
  |
| Joined: 12 Jun 2009 |
| Total Posts: 13241 |
|
| |
zeke505
|
  |
| Joined: 26 May 2008 |
| Total Posts: 15765 |
|
|
| 08 Jul 2011 09:29 AM |
Cymru, this is my current script.
mode = script.Parent.Mode script.Parent.Equipped:connect(function(m) m.KeyDown:connect(function(k) if k:lower() == "z" then mode.Value = 0 print("mode1") elseif k:lower() == "x" then mode.Value = 1 print("mode2") elseif k:lower() == "c" then mode.Value = 2 print("mode3") end end) m.Button1Down:connect(function() pl = game.Players.LocalPlayer ch = pl.Character if mode.Value == 0 then print("omgmode1") p = Instance.new("Part", ch) Instance.new("BlockMesh", p) d = Instance.new("Decal", p) d.Texture = "http://www.roblox.com/asset/?id=55663565" d.Face = "Top" p.formFactor = "Custom" p.Size = Vector3.new(5,1,5) p.Transparency = 1 p.CanCollide = false w = Instance.new("Weld", p) w.Part0 = p w.Part1 = ch.Torso w.C0 = CFrame.new(0, -3.4, 0) for i=1, 3, .1 do p.Mesh.Scale = p.Mesh.Scale + Vector3.new(1,0,1) wait() end end end) end)
|
|
|
| Report Abuse |
|
zeke505
|
  |
| Joined: 26 May 2008 |
| Total Posts: 15765 |
|
| |