A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
naknak
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
Supernapalm
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
m27frogy
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
slayer9365
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
myrco919
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
branefreez
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
ninga95
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
CloneTrooper787
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
raboy117
CFrame: Positioning and Rotating Vote_lcapCFrame: Positioning and Rotating Voting_barCFrame: Positioning and Rotating Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
CFrame: Positioning and Rotating EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
CFrame: Positioning and Rotating EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
CFrame: Positioning and Rotating EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
CFrame: Positioning and Rotating EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
CFrame: Positioning and Rotating EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
CFrame: Positioning and Rotating EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
CFrame: Positioning and Rotating EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
CFrame: Positioning and Rotating EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
CFrame: Positioning and Rotating EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
CFrame: Positioning and Rotating EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
CFrame: Positioning and Rotating EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
CFrame: Positioning and Rotating EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
CFrame: Positioning and Rotating EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
CFrame: Positioning and Rotating EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
CFrame: Positioning and Rotating EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
CFrame: Positioning and Rotating EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
CFrame: Positioning and Rotating EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
CFrame: Positioning and Rotating EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
CFrame: Positioning and Rotating EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
CFrame: Positioning and Rotating EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 CFrame: Positioning and Rotating

Go down 
2 posters
AuthorMessage
Guest
Guest
avatar



CFrame: Positioning and Rotating Empty
PostSubject: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyNovember 14th 2010, 4:13 am

Many people do not understand how to rotate a brick through a script. To rotate a brick, we use CFrame.
Normally CFrame just positions a brick, but by adding a few extra words, it can also rotate bricks.
We do this by adding *CFrame.Angles(0,0,0) after we CFrame a brick to its position.
(Replace 0,0,0 with the rotation angle you want)
p = Instance.new("Part")
p.CFrame = CFrame.new(0, 10, 0)*CFrame.Angles(0,0,0)
The first part Positions, the second part rotates. You do not need to put *CFrame.Angles to use CFrame, CFrame can also be used just for positioning bricks. I hope you learned something from my tutorial.
--==[[Builderboy202]]==--
Back to top Go down
Guest
Guest
avatar



CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 16th 2011, 11:00 pm

what does Vector3.new do then?
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 16th 2011, 11:07 pm

It can be a size or position. Pretty much anything that can be classified as 3D
Back to top Go down
Guest
Guest
avatar



CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 16th 2011, 11:24 pm

So pretty much ROBLOX added an extra command? I think there's more to that.
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 16th 2011, 11:56 pm

Cframe puts an object somewhere no matter what else is there. Vector3, when used to position something, places as close to the place you specify, raising the Y value until it can fit.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 25

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 17th 2011, 8:39 am

he forgot to tell us that the angles were in radians. :P
to convert degrees to radians you can do math.rad(degrees) or (math.pi*2)/(360/degrees)


Last edited by blueymaddog on January 18th 2011, 7:34 am; edited 2 times in total
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 17th 2011, 12:58 pm

Ah, math. Lovely
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 25

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 18th 2011, 7:00 am

yup.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 25

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyJanuary 18th 2011, 7:14 am

to convert radians to degrees you can do math.deg(radians) or 360/((math.pi*2)/radians)
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 25

CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating EmptyNovember 20th 2011, 5:56 am

he should really space out his tutorials in paragraphs, that way people will understand it better!
Back to top Go down
Sponsored content





CFrame: Positioning and Rotating Empty
PostSubject: Re: CFrame: Positioning and Rotating   CFrame: Positioning and Rotating Empty

Back to top Go down
 
CFrame: Positioning and Rotating
Back to top 
Page 1 of 1
 Similar topics
-
» Vector3 BrickColor CFrame
» I just make a Local, Tool-less weapon system, and a radar complete with a rotating compass.

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Tutorials and Resources :: Intermediate-
Jump to: