|
| 15 Mar 2012 07:08 PM |
p = Instance.new("Part")
p.Reflectance = 0 p.Transperency = 0.5 p.CanCollide = false p.Position = 0, 1, 3
end
will it work for making a brick? |
|
|
| Report Abuse |
|
|
|
| 15 Mar 2012 07:14 PM |
p = Instance.new("Part" Workspace) p.Reflectance = 0 p.Transperency = 0.5 p.CanCollide = false
† KMXD † |
|
|
| Report Abuse |
|
|
|
| 15 Mar 2012 07:15 PM |
Gah.
p = Instance.new("Part", Workspace) p.Reflectance = 0 p.Transperency = 0.5 p.CanCollide = false p.Position = (0,0,0)
† KMXD † |
|
|
| Report Abuse |
|
|
| |
|
|
| 15 Mar 2012 07:24 PM |
p = Instance.new("Part", Workspace) p.Reflectance = 0 p.Transperency = 0.5 p.CanCollide = false p.Position = (0,1,3) |
|
|
| Report Abuse |
|
|
|
| 15 Mar 2012 07:26 PM |
| try my script builder its better than the other ones! theres a starter script in ti and sepret rooms |
|
|
| Report Abuse |
|
|
|
| 15 Mar 2012 07:30 PM |
| It is probaly copied if you are asking if this simple script would work. |
|
|
| Report Abuse |
|
|
|
| 15 Mar 2012 08:12 PM |
p = Instance.new("Part")
p.Parent = game.Workspace --just put Workspace or workspace if you'd like. p.Reflectance = 0 p.Transperency = 0.5 p.CanCollide = false p.Position = (0, 1, 3)
end
|
|
|
| Report Abuse |
|
|
|
| 15 Mar 2012 08:42 PM |
| You don't need an end when instancing something. |
|
|
| Report Abuse |
|
|
| |
|
ICSM1020
|
  |
| Joined: 09 Mar 2011 |
| Total Posts: 14277 |
|
|
| 15 Mar 2012 08:54 PM |
p = Instance.new("Part")
p.Reflectance = 0 p.Position = Vector3.new(0, 0, 0) p.CanCollide = false p.Parent = game.Workspace |
|
|
| Report Abuse |
|
|
SDuke524
|
  |
| Joined: 29 Jul 2008 |
| Total Posts: 6267 |
|
|
| 15 Mar 2012 09:19 PM |
All of you are wrong. Position is a Vector3 value, not a bunch of random values. You forgot to assign the parent, which won't error, but you won't see it. Transparency with an a, not e. No end.
p = Instance.new("Part",workspace); p.Reflectance = 0; p.Transparency = 0.5; p.CanCollide = false; p.Position = Vector3.new(0, 1, 3); |
|
|
| Report Abuse |
|
|
FinaIize
|
  |
| Joined: 20 Feb 2012 |
| Total Posts: 43 |
|
|
| 15 Mar 2012 09:39 PM |
local Part = Instance.new("Part",workspace) Part.Reflectance = 0 Part.Transperency = 0.5 Part.CanCollide = false Part.Position = Vector3.new(0, 1, 3) Here. |
|
|
| Report Abuse |
|
|