hansotto
|
  |
| Joined: 21 Apr 2010 |
| Total Posts: 233 |
|
|
| 17 Apr 2013 03:01 PM |
Help me, my Script dosn't work.
i dont get the tool in my Backpack when i type this in a Script Build
a = Instance.new("Tool",game.Workspace.hansotto.Backpack a.Name = "HansiSword"
Instance.new("Part",game.Workspace.hansotto.Backpack.HansiSword) b.Anchored = false b.BrickColor = BrickColor.new("Light Grey") b.CanCollide = False b.FormFactor = "Custom" b.Size = Vector3.new(1,5,1) b.TopSurface = "Smooth" b.BottomSurface = "Smooth" b.LeftSurface = "Smooth" b.RightSurface = "Smooth" b.FrontSurface = "Smooth" b.BackSurface = "Smooth" b.Name = "handle"
|
|
|
| Report Abuse |
|
|
|
| 17 Apr 2013 03:08 PM |
| Your main problem is that you need to define what 'b' is, unless you just made a typo and all of them are supposed to be 'a'... |
|
|
| Report Abuse |
|
|
|
| 17 Apr 2013 03:11 PM |
| You also forgot a parenthesis at the end of the first line.... |
|
|
| Report Abuse |
|
|
|
| 17 Apr 2013 04:40 PM |
a = Instance.new("Tool",game.Workspace.hansotto.Backpack) a.Name = "HansiSword"
b = Instance.new("Part",game.Workspace.hansotto.Backpack.HansiSword) b.Anchored = false b.BrickColor = BrickColor.new("Light Grey") b.CanCollide = False b.FormFactor = "Custom" b.Size = Vector3.new(1,5,1) b.TopSurface = "Smooth" b.BottomSurface = "Smooth" b.LeftSurface = "Smooth" b.RightSurface = "Smooth" b.FrontSurface = "Smooth" b.BackSurface = "Smooth" b.Name = "Handle" |
|
|
| Report Abuse |
|
|
btft
|
  |
| Joined: 19 Feb 2011 |
| Total Posts: 1512 |
|
|
| 17 Apr 2013 04:45 PM |
a = Instance.new("Tool",game.Players.hansotto.Backpack) a.Name = "HansiSword"
b = Instance.new("Part",game.Players.hansotto.Backpack.HansiSword) b.Anchored = false b.BrickColor = BrickColor.new("Light Grey") b.CanCollide = False b.FormFactor = "Custom" b.Size = Vector3.new(1,5,1) b.TopSurface = "Smooth" b.BottomSurface = "Smooth" b.LeftSurface = "Smooth" b.RightSurface = "Smooth" b.FrontSurface = "Smooth" b.BackSurface = "Smooth" b.Name = "Handle" |
|
|
| Report Abuse |
|
|