|
| 12 Jun 2013 05:37 PM |
Sorry if its a small silly mistake. I'm new in lua so i'm sorry.
while true do script.Parent.Vector3 = ("-22, 3.59, 55.5") wait(0.5) script.Parent.Vector3 = ("-25, 3.60, 58.5") wait(0.5) end |
|
|
| Report Abuse |
|
|
|
| 12 Jun 2013 05:38 PM |
| Do you need number values, or string values? |
|
|
| Report Abuse |
|
|
| |
|
|
| 12 Jun 2013 05:39 PM |
while true do
script.Parent.Position = Vector3.new(-22, 3.59, 55.5) wait(0.5) script.Parent.Position = Vector3.new(-25, 3.60, 58.5) wait(0.5)
end |
|
|
| Report Abuse |
|
|
| |
|