Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 12 Apr 2015 08:01 AM |
BodyPosition.maxForce=Vector3.new(0,1000,0)
How do I use it on a player so that the player can only go to y axis? |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 12 Apr 2015 08:12 AM |
| What do I need to do to make it work on a player? |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
| |
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
| |
|
|
| 12 Apr 2015 11:20 AM |
| local script and put the players name? |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 12 Apr 2015 11:21 AM |
| I insert it in starter pack right? |
|
|
| Report Abuse |
|
|
| |
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 12 Apr 2015 11:22 AM |
so game.Players.BodyPosition.maxForce=Vector3.new(0,1000,0)? |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
| |
|
|
| 12 Apr 2015 11:58 AM |
| game.Players.YOURNAMEHERE.BodyPosition.maxForce=Vector3.new(0,1000,0) |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 12 Apr 2015 02:19 PM |
| It says "BodyPosition is not a valid member of Player" |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
| |
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
| |
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
| |
|
Trioxide
|
  |
| Joined: 29 Mar 2011 |
| Total Posts: 32902 |
|
|
| 14 Apr 2015 02:37 PM |
| You need to put a BodyPosition inside the character. :l |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 14 Apr 2015 02:43 PM |
So how would it look like, game. ? I've done this game.Players.Character.BodyPosition.maxForce=Vector3.new(0,1000,0) |
|
|
| Report Abuse |
|
|
Zoltra
|
  |
| Joined: 21 Jul 2012 |
| Total Posts: 105 |
|
|
| 14 Apr 2015 02:48 PM |
This is what I have so far: local player = game.Players.LocalPlayer local character = player.Character player.Character.BodyPosition.maxForce=Vector3.new(0,1000,0)
It says " BodyPosition is not a valid member of Model " How do I fix this? |
|
|
| Report Abuse |
|
|
|
| 14 Apr 2015 03:10 PM |
...
Try to learn scripting first... This is just the basics.. Use Instance.new("BodyPosition").
|
|
|
| Report Abuse |
|
|
|
| 14 Apr 2015 03:13 PM |
Stick a BodyPosition in the Torso
bp = Instance.new("BodyPosition") bp.Parent = Character.Torso |
|
|
| Report Abuse |
|
|
|
| 14 Apr 2015 03:26 PM |
| Why dont you just make it a script? |
|
|
| Report Abuse |
|
|