arby31
|
  |
| Joined: 29 Dec 2009 |
| Total Posts: 337 |
|
|
| 21 Jul 2011 10:13 PM |
script.Parent.DialogChoiceSelected:connect(function(p,d) if d.Name == "Truck" then game.Lighting.Truck.clone().Parent = game.Players:FindFirstChild(p.Name).Backpack end end)
*truck equals the gear im giving* |
|
|
| Report Abuse |
|
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 21 Jul 2011 10:16 PM |
"game.Lighting.Truck.clone().Parent = game.Players:FindFirstChild(p.Name).Backpack"
Try
game.Lighting.Truc:clone().Parent = game.Players:FindFirstChild("p.Name").Backpack |
|
|
| Report Abuse |
|
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
| |
|
Sam3812
|
  |
| Joined: 23 Nov 2007 |
| Total Posts: 1703 |
|
|
| 21 Jul 2011 10:18 PM |
local Truck = game.Lighting.Truck
script.Parent.DialogChoiceSelected:connect(function(p,d)
if d.Name == "Truck" then t = Truck:clone() t.Parent = game.Players:FindFirstChild(p.Name).Backpack
end
end)
Try that. |
|
|
| Report Abuse |
|
|