|
| 25 Jun 2014 02:10 PM |
local tool = script.Parent function onActivation() print("Tool activated") local shot = Instance.new("Part") shot.Parent = game.Players.LocalPlayer.Character shot.Name = "Bullet" shot.Size = Vector3.new("1,1,6") shot.CanCollide = true shot.Anchored = false shot.Transparency = 1
shot.Position = game.Players.LocalPlayer.Character.Tool.Barrel.Position end tool.Activated:connect(onActivation) ________^^^^^^^^ script
15:06:29.973 - "Part.size" should be "Size" 15:06:29.974 - "Part.size" should be "Size" ^^^^^^^^ issue
Why is it printing that and it won't set the size to what I have it set too, |
|
|
| Report Abuse |
|
|
|
| 25 Jun 2014 02:11 PM |
1) You don't need ("") just (1,1,6)
|
|
|
| Report Abuse |
|
|
|
| 25 Jun 2014 02:13 PM |
| Always remember size does matter. |
|
|
| Report Abuse |
|
|
wubbzy301
|
  |
| Joined: 15 May 2010 |
| Total Posts: 1188 |
|
|
| 25 Jun 2014 02:14 PM |
Vector3.new(1,1,6)
not Vector3.new("1,1,6")
- dun dun dun a ghost is coming for you |
|
|
| Report Abuse |
|
|