|
| 06 Jan 2013 02:00 PM |
| I often weld, and allot of times...Not all times, but allot it glitches. Please give me the proper way to make welds and weld the parts together without it bugging. thanks. |
|
|
| Report Abuse |
|
|
TechWorks
|
  |
| Joined: 04 Jan 2013 |
| Total Posts: 282 |
|
|
| 06 Jan 2013 02:04 PM |
http://wiki.roblox.com/index.php/Tools
Section 5, subsection 2. Tells you all about welds, and how to make them. ;) |
|
|
| Report Abuse |
|
|
|
| 06 Jan 2013 02:04 PM |
local P0 = Workspace.Base local P1 = Workspace.Part local weld = Instance.new("ManualWeld", P0) weld.P0 = P0 weld.P1 = P1 weld.C0 = CFrame.new(0, 1, 0) -- places joint 1 stud above P0 weld.C1 = CFrame.new(0, 0.5, 0) -- describes how P1 should be attached to C0
¬ LuaLearners Elite/Writer |
|
|
| Report Abuse |
|
|
|
| 06 Jan 2013 02:06 PM |
| Thats how I do, guess there is not a big secret to it. I wonder why mine bug all the time then. |
|
|
| Report Abuse |
|
|