|
| 16 Jul 2011 07:35 PM |
I tryed and script helpers but its very inactive
The script makes you teleport when you pick a dialog heres how it looks
Dialog=script.Parent Dialog.DialogChoiceSelected:connect(function(Choice, Player) if Choice == Dialog.Choice1 then Player:MoveTo(1,1,1) end)
|
|
|
| Report Abuse |
|
|
renkos
|
  |
| Joined: 02 Apr 2009 |
| Total Posts: 2198 |
|
|
| 16 Jul 2011 07:36 PM |
Move this thread to LMaD.
x3 |
|
|
| Report Abuse |
|
|
| |
|
L2000
|
  |
| Joined: 03 Apr 2008 |
| Total Posts: 77448 |
|
|
| 16 Jul 2011 07:38 PM |
You're missing an end for the 'if.'
Dialog=script.Parent Dialog.DialogChoiceSelected:connect(function(Choice, Player) if Choice == Dialog.Choice1 then Player:MoveTo(1,1,1) end end) |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
|
| 16 Jul 2011 07:47 PM |
Player.Character:MoveTo(Vector3.new(1,1,1))
And another end. |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2011 07:49 PM |
Should it be Local Dialog=script.Parent?
|
|
|
| Report Abuse |
|
|
| |
|
|
| 16 Jul 2011 08:17 PM |
Try, or did you? Local Dialog=script.Parent Dialog.DialogChoiceSelected:connect(function(Choice, Player) if Choice == Dialog.Choice1 then Player.Character:MoveTo(Vector3.new(1,1,1)) end end) |
|
|
| Report Abuse |
|
|