SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:04 PM |
| In ROBLOX you have the ability to position Parts but no grouped Models. Is there a Plug In that gives you the ability to position grouped Models? If so please give me the link. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2015 12:09 PM |
What do you mean? You can move entire models with the move tool, or click and drag. If you want to move a part within a model, select that part and use the move tool. If you want to click and drag a part within a model, you'll have to ungroup and regroup.
If you mean manual number insertion under position in the explorer, then I'm not sure. I don't use plugins. |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:16 PM |
| Not what I meant. I like to position my Parts with precision. For example I want to place my grouped Model at 0, 0, 0 but it would be quite difficult to drag it there with exact accuracy. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2015 12:18 PM |
| thers one for resizing models |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:19 PM |
| Yes, I know. I installed it but I am planning on uninstalling it because I highly dislike it. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2015 12:23 PM |
try entering this in the command bar
game.Workspace.Model:MoveTo(0, 0, 0) |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:28 PM |
| Thanks, but it did not work. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2015 12:32 PM |
what about this game.Workspace.Model:SetPrimaryPartCFrame(0, 0, 0) the model needs a primary part though |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
| |
|
|
| 22 Aug 2015 12:36 PM |
this might help (sorry for the offsite link, its safe trust me >.<) https://scriptinghelpers.org/questions/9837/how-do-i-position-a-model |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:37 PM |
| I will explain my problem further because I am getting more and more desperate for help. The base of my grouped Model is positioned at -18.004, 1.5, -77.495. I like Moving my Parts with 1 Stud because I like precision and accuracy. Also, I like all of my Parts being positioned with no more than 2 decimal digits. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2015 12:40 PM |
| so if you're moving with 1 stud can't you just use the move tool? |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:41 PM |
-18.004, 1.5, -77.495
Look at its position. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2015 12:42 PM |
oooohhh ok so did anything from the link I posted work? |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 12:44 PM |
I will explain my situation even deeper now. I am making a project on an Alternate Account where I basically grab a some older Models built by ROBLOX and recolour and retexture them. Sometimes when you spawn a Free Model the positioning on it is a bit off. The name of the grouped Model I am having problems with is "Tower" and I want to move it to 0, 0, 0.
I apologize for this but I barely use the Command Bar so it would be very helpful if you tell me exactly what to say into it. |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 22 Aug 2015 01:12 PM |
| I desperately need assistance. |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 24 Aug 2015 07:38 AM |
| In ROBLOX you have the ability to position Parts but not grouped Models.* |
|
|
| Report Abuse |
|
|
Koowa
|
  |
| Joined: 29 Apr 2014 |
| Total Posts: 474 |
|
|
| 24 Aug 2015 07:41 AM |
local Model = --Put your Model here, whatever it is Model:MoveTo(Vector3.new(0, 0, 0) should work |
|
|
| Report Abuse |
|
|
Koowa
|
  |
| Joined: 29 Apr 2014 |
| Total Posts: 474 |
|
|
| 24 Aug 2015 07:41 AM |
Opps
local Model = --Put your Model here, whatever it is Model:MoveTo(Vector3.new(0, 0, 0)) -should work |
|
|
| Report Abuse |
|
|
Koowa
|
  |
| Joined: 29 Apr 2014 |
| Total Posts: 474 |
|
|
| 24 Aug 2015 07:42 AM |
Realized that wouldn't work well for command bar lol
workspace.Model:MoveTo(Vector3.new(0, 0, 0)) |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
|
| 24 Aug 2015 08:05 AM |
| Koowa, instead of Model do I type in Tower because that is what the Model is named. |
|
|
| Report Abuse |
|
|
Koowa
|
  |
| Joined: 29 Apr 2014 |
| Total Posts: 474 |
|
| |
|
LordxLoss
|
  |
| Joined: 02 Jun 2012 |
| Total Posts: 1999 |
|
|
| 24 Aug 2015 08:06 AM |
| Yes, replaced Model with Tower |
|
|
| Report Abuse |
|
|
SirPaco
|
  |
| Joined: 10 Aug 2007 |
| Total Posts: 10631 |
|
| |
|
Koowa
|
  |
| Joined: 29 Apr 2014 |
| Total Posts: 474 |
|
|
| 24 Aug 2015 08:08 AM |
It didn't move at all?
Did you put it on command bar & press enter?
Cus for me it worked all fine |
|
|
| Report Abuse |
|
|