sumox567
|
  |
| Joined: 22 Apr 2008 |
| Total Posts: 11191 |
|
|
| 13 Jul 2012 06:55 PM |
P = script.Parent -------------------- function onClicked P.postion = Vector3.New = (168, 30.63, -91.57)
script.Parent.ClickDetector.MouseClick:connect(onClicked)
When clicked, this brick is supposed to teleport to a new Vector3 |
|
|
| Report Abuse |
|
WhiteRain
|
  |
| Joined: 24 Apr 2010 |
| Total Posts: 2723 |
|
|
| 13 Jul 2012 06:59 PM |
p = script.Parent script.Parent.ClickDetector.MouseClick:connect(function() p.Position = Vector3.new(168, 30.63, -91.57) end) |
|
|
| Report Abuse |
|
| |