|
| 02 Mar 2013 09:11 PM |
| The "bug" is that after I have CFramed 1 block into position for the rotation and such, I cannot do it to a different brick even though I click on it, Do I have to re-type it or what ?? |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Mar 2013 09:14 PM |
| How are you CFraming the 1st block into position? |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 09:27 PM |
Workspace.Part.CFrame = CFrame.new(0, 50, 0)*CFrame.Angles(0, math.pi, 0)
First few numbers are for the X, Y, Z. Second set is for the rotation.
I have put one brick in place like that, I am trying to make a circle or sphere as practice of CFrame but the ROBLOX Studio 2013 will not let me CFrame the other brick I select after selecting it, And by selecting it I mean tapping it with mouse, Which is what I am supposed to do right? |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Mar 2013 09:46 PM |
for i = 1,#game.Selection:Get() do game.Selection:Get()[i].CFrame = game.Selection:Get()[i].CFrame * CFrame.new(0,0,0)* CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) end
Select the object, and then enter the above into the output.
Your issue is that you're referring to "Part" i your script. By default blocks you put in the game are called "Part". When you have multiple things with the same name the script doesn't know which part you want. The above refers to a selected block so it doesn;t matter what its name is. |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 09:57 PM |
| Dude, Even I know that is wrong, "If ya don't know whatchu talkin' bout then don't talk." Output is for Scripts, CFrame is no scripting >.> But the same brick might have something to deal with it, Besides that you are way off .. |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 09:59 PM |
| Ugh I just tried changing the 2nd Brick type, You were wrong on everything, EVEN the same brick thing .. |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
| |
|
|
| 02 Mar 2013 10:05 PM |
| LOL you're the one facepalming??, Try being me, I have had to correct what you are talking about WHEN IM THE ONE NEEDING THE HELP, and also having to explain to you on a diff. topic that there is an extremely easy way to use insert to insert the team and then put a model into the team. |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
| |
|
69scott69
|
  |
| Joined: 30 Jan 2011 |
| Total Posts: 6136 |
|
|
| 02 Mar 2013 10:07 PM |
Hey CODEMaster, the line Tummey gave you was for Command Bar, DIRECTLY from the ROBLOX wiki. Use it before you call someone out like that.
|
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 10:08 PM |
1. WOW someone chose an appropriate name for a child site. 2. Just because it is from a wiki doesn't mean it always helps .. |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 10:12 PM |
| 3. I just tried the thing for the "command bar" I was right, I knew when he said output he was far off, I just tried that "command bar" thing and "guess a what!!" IT DIDN'T WORK!, Not much of a shocker ... |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
| |
|
69scott69
|
  |
| Joined: 30 Jan 2011 |
| Total Posts: 6136 |
|
|
| 02 Mar 2013 10:17 PM |
Did you try it?
If you did you will find that it works for the brick you select.
69 is the year I was born, and as I haven't broken any ROBLOX rules in my conduct toward anyone on this site I haven't had any issues. There are some older people on this site who enjoy the building and engineering side of what they provide. |
|
|
| Report Abuse |
|
|
| |
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Mar 2013 10:32 PM |
| Scott has the decency to help you even though you make yourself look like a complete fool. I honestly hope you're a troll because if you aren't you're in a whole new category of ridiculousness. |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 10:35 PM |
| @Tummey. Exactly WHAT help did he provide besides a mere suggestion/degrading me to ask if I tried something that obviously I would have, ALSO All you going to provide help at all or just keep commenting when you aren't providing help ?? |
|
|
| Report Abuse |
|
|
69scott69
|
  |
| Joined: 30 Jan 2011 |
| Total Posts: 6136 |
|
|
| 02 Mar 2013 10:36 PM |
Hm, and you say I am doing wrong by being here...
Here is the line I use in the command bar. I have changed all the values to 0 for your convenience:
for i = 1,#game.Selection:Get() do game.Selection:Get()[i].CFrame = game.Selection:Get()[i].CFrame * CFrame.new(0,0,0)* CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) end |
|
|
| Report Abuse |
|
|
69scott69
|
  |
| Joined: 30 Jan 2011 |
| Total Posts: 6136 |
|
|
| 02 Mar 2013 10:38 PM |
And yes, I know it's exactly the same as Tummeys, because it works.
|
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Mar 2013 10:38 PM |
| I provided help on my second post. I really wish I didn't though... |
|
|
| Report Abuse |
|
|
69scott69
|
  |
| Joined: 30 Jan 2011 |
| Total Posts: 6136 |
|
|
| 02 Mar 2013 10:39 PM |
If you are trying to make a circle, why not use the circle script the wiki provides?
|
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 10:43 PM |
1. Tried it with everything, Doesn't work. 2. Tried it without "end", Doesn't work. 3. Tried it without "for i =", Doesn't work.
also when did i say to you "I am doing wrong by being here..." ???? |
|
|
| Report Abuse |
|
|
tummey2
|
  |
| Joined: 04 Feb 2009 |
| Total Posts: 1802 |
|
|
| 02 Mar 2013 10:48 PM |
| You said it twice, Once when you said he was a P, and second when you said he should go to ITT or MIT to learn to engineer. |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 10:50 PM |
| I never SAID it was WRONG to be here, I said it is unusual/weird, aka "shut the f up alrdy idiot since ya dont know whatcha talking bout !" |
|
|
| Report Abuse |
|
|
|
| 02 Mar 2013 10:51 PM |
| ALSO I never said those things either, I simply implied it, Now leave ignorant fool. |
|
|
| Report Abuse |
|
|