Josh62999
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 134 |
|
|
| 25 Nov 2012 01:30 AM |
What I want to do is make a blue brick made out of ice appear at (0,30,0) over and over again. I have all the properties in the script in a way that I suppose is wrong. What should I change on my script? Here it is: function start() while (true) do p = Instance.new(Part) p.Location = Vector3.new(0, 30, 0) p.Size = Vector3.new(1, 1, 1) p.BrickColor = "Deep Blue" p.Parent = game.Workspace p.Name = "Water" p.Material = "Ice" p.Anchored = false p.CanCollide = true wait(1) end end
(from "p = Instance.new(Part)" to "p.CanCollide = true" is on the same line in the script) |
|
|
| Report Abuse |
|
Josh62999
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 134 |
|
| |
Octopus
|
  |
| Joined: 26 Feb 2008 |
| Total Posts: 460 |
|
|
| 25 Nov 2012 02:07 AM |
| change "Location" to "Position" |
|
|
| Report Abuse |
|