|
| 28 Mar 2013 05:03 PM |
| Can someone tell me how to make it to where when you say a certain phrase/word, a brick(s) will move a certain amount of studs in a certain direction? |
|
|
| Report Abuse |
|
|
| |
|
Validar
|
  |
| Joined: 15 Mar 2013 |
| Total Posts: 276 |
|
|
| 28 Mar 2013 05:41 PM |
local b = Instance.new('BodyVelocity') b.maxForce = Vector3.new(math.huge, math.huge, math.huge) b.velocity = Vector3.new(0, 10, 0) b.Parent = Workspace.Part |
|
|
| Report Abuse |
|
|
|
| 28 Mar 2013 05:54 PM |
Ok, now HOW do I set it up so that the part(s) move?
|
|
|
| Report Abuse |
|
|
Captevyo
|
  |
| Joined: 09 Nov 2009 |
| Total Posts: 179 |
|
|
| 28 Mar 2013 06:01 PM |
| Many ways are possible you can spin the object by using force and alot of other things. But do you want spin or moving. |
|
|
| Report Abuse |
|
|
| |
|
|
| 28 Mar 2013 06:28 PM |
| Use CFrame to move it upwards. |
|
|
| Report Abuse |
|
|
|
| 28 Mar 2013 06:34 PM |
| No, like in a game. For example, when a certain person/people say something in the game like"Start", the parts will move upwards |
|
|
| Report Abuse |
|
|
|
| 28 Mar 2013 06:35 PM |
I have no idea what you're talking about, but this is how you do it:
http://wiki.roblox.com/index.php/CFrame
|
|
|
| Report Abuse |
|
|
Kepie
|
  |
| Joined: 12 Nov 2011 |
| Total Posts: 884 |
|
|
| 28 Mar 2013 06:35 PM |
| First post gave you answer.. |
|
|
| Report Abuse |
|
|
FIRECAKE
|
  |
| Joined: 28 Feb 2009 |
| Total Posts: 25167 |
|
|
| 28 Mar 2013 06:35 PM |
Use the same thing that chat command scripts use and then just do CFrame
⊂=-҉Ξ҉-=⊃ Verb conjugator, plus herb inhalator ⊂=-҉Ξ҉-=⊃ |
|
|
| Report Abuse |
|
|
Kepie
|
  |
| Joined: 12 Nov 2011 |
| Total Posts: 884 |
|
|
| 28 Mar 2013 06:40 PM |
game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(msg) if msg:lower() == "start" then --CFrame or the velocity end end) end) |
|
|
| Report Abuse |
|
|