How Do I CFrame the Whole Model on Roblox?
"Roblox" is an online game for the PC that relies entirely on a user's creativity and ingenuity. The developers have given all players access to the full in-game world creator that is used to design worlds, typically from objects resembling blocks. There are primarily two ways to operate the editor: a version accessible to anyone and a version with extended options for those that have programming experience. If you are in the later category, you can use CFrames, or Coordinate Frames, to customize the objects you are placing. This requires a great deal of experience to customize, but nearly anyone can make its effects occur on an entire model.
Instructions
-
-
1
Load a level that has an object inside it in "Roblox Studio." You can load a level you have created, a level someone else has created, or any of the sample levels included with the editing software.
-
2
Right-click the object. A list of options will expand.
-
-
3
Click "Edit model" from the list of options. The code that makes the object will be displayed in a new window.
-
4
Add ".CFrame = CFrame.new" (without the quotation marks) to the end of the first line in the code but before the numbers are displayed. This is when the object is technically created, which will cause the CFrame to occur for all aspects of the model. You can then make any customization options you want with the CFrames.
-
1