|
| 28 Jun 2012 10:22 AM |
Hello,
I was wondering, how do I slant a brick, say 45 degrees? I have read through multiple walkthroughs, scripts, and I have also watched multiple youtube videos, did exactly what they said to do, and it came out a flat brick. Can someone please help me? Thank you in advance.
-minor |
|
|
| Report Abuse |
|
|
|
| 28 Jun 2012 10:45 AM |
| In my models i have a model called robloxbests advanced building tools -Its for build/test mode. One of the tools is a c-frame tool that is similar to the command bar. It will let you select a brick and change the location/angle of a block. |
|
|
| Report Abuse |
|
|
|
| 28 Jun 2012 11:08 AM |
| Robloxbest, thanks for helping, but you should*always* suggest to use Studio, and command bar/CmdUtl Cframing, never Build mode and Cframe tools. The latter only cause problems further down the path when learning how to build. |
|
|
| Report Abuse |
|
|
|
| 28 Jun 2012 11:27 AM |
| Always anchor CFramed parts. If it needs to move then use a weld script. |
|
|
| Report Abuse |
|
|
drew8732
|
  |
| Joined: 01 Apr 2010 |
| Total Posts: 1965 |
|
|
| 28 Jun 2012 11:49 AM |
| If you just want to slant bricks in 45 degree increments, there's a little tool I use in Studio sometimes though I'm not sure what it's called. The icon looks like this: > And when you select a part, it almost looks like a CFrame tool. It's up in the toolbar to the left, I believe. |
|
|
| Report Abuse |
|
|
Zomebody
|
  |
| Joined: 01 Jun 2010 |
| Total Posts: 789 |
|
|
| 28 Jun 2012 12:17 PM |
to turn a brick you can use CFrame.Angles() (it's in radians). If you want the brick to turn 45 degrees, you can use this piece of code:
Pos = Part.Position Part.CFrame = CFrame.new(Pos.X, Pos.Y, Pos.Z)*CFrame.Angles(0, 0, math.pi/4) |
|
|
| Report Abuse |
|
|
|
| 28 Jun 2012 04:00 PM |
| or the easy way- in roblox studio, select the brick, than go to top right of page and press the rotate circle button, this allows u to tilt the brick |
|
|
| Report Abuse |
|
|