of     2   
chevron_rightchevron_rightchevron_right

Ubermacht
#36735193Tuesday, November 09, 2010 12:19 AM GMT

Okay, so I'm trying to weld a cframed car I made. When placed in a normal script, the following works in solo mode and not online mode. local V = script.Parent local MainPart = V.BasePart for i,v in pairs(V:GetChildren()) do if v:IsA("BasePart") then if v ~= MainPart then local w = Instance.new("Weld") w.Part0 = MainPart w.Part1 = v w.C1 = w.Part1.CFrame:toObjectSpace(w.Part0.CFrame) w.Parent = Game.JointsService end end end for i,v in pairs(V:GetChildren()) do if v:IsA("BasePart") then v.Anchored = false end end Any solutions?
Ubermacht
#36735547Tuesday, November 09, 2010 12:25 AM GMT

Okay, well while I was waiting for replies I decided to try putting it in a localscript. However, you know how you can just put script.Parent regardless of the name of the script, what would I put for local script? The script stopepd working when I tried to use local V = script.Parent so any solutions?
Crunch225
#36735589Tuesday, November 09, 2010 12:25 AM GMT

The issue may be that your using JointService, have you tried not using it just to test?
Ubermacht
#36735700Tuesday, November 09, 2010 12:27 AM GMT

What else could I use?
crazypotato4
#36735783Tuesday, November 09, 2010 12:28 AM GMT

JointsService is not there by default, you have to get the service from game. game:getService("JointsService")
Ubermacht
#36736009Tuesday, November 09, 2010 12:31 AM GMT

Thank you! :D One more question however. My friend actually gave me this welding script. It used to work even during normal online mode, however I see that it has stopped. Since I never wrote this script, my scripting knowledge is minimal and I'm not quite sure where I should put the line you suggested. Any more help would greatly be appreciated. Sorry for all the trouble. :/
Ubermacht
#36737247Tuesday, November 09, 2010 12:48 AM GMT

Because of lack of replies, I attempted to do this: w.Parent = game:getService("JointsService") Didn't work. :/
crazypotato4
#36737288Tuesday, November 09, 2010 12:49 AM GMT

That's actually how to do it, that should be correct. Maybe I got the name wrong. Be right back.
Ubermacht
#36738696Tuesday, November 09, 2010 1:08 AM GMT

Thank you. Perhaps it is JointService not JointsService? I'll try.
Ubermacht
#36738997Tuesday, November 09, 2010 1:12 AM GMT

No luck. :o
Elite777
#36739367Tuesday, November 09, 2010 1:16 AM GMT

Hmm. You're script is fine... Comments before show everything that is needed and Joints Service.... Is that a real service (excuse my ignorance)?
Ubermacht
#36739461Tuesday, November 09, 2010 1:18 AM GMT

All I know is that it used to be. Output told me that JointService isn;t a valid service. However when I changed it back to JointsService, it claims BasePart isn't a member of Workspace. I didn't ever say it was in the workspace.
Ubermacht
#36740363Tuesday, November 09, 2010 1:30 AM GMT

Well, the issue with BasePart npt being part of workspace wasmjust because I had duplicated in the workspace whichI thought wouldn't be effected. It still does not work hpwever.
Ubermacht
#36741154Tuesday, November 09, 2010 1:42 AM GMT

Anyone care to help? :/
Ubermacht
#36741457Tuesday, November 09, 2010 1:47 AM GMT

Could this just be ROBLOX's fault?
Ubermacht
#36742041Tuesday, November 09, 2010 1:56 AM GMT

I'll blame it on ROBLOX for now. :/ I'm still kind of sad though how I won't be able to cframe cars now.
Ubermacht
#36754156Tuesday, November 09, 2010 1:19 PM GMT

There must be a solution! Ir works in solo mode, however not in online! Why?
acealeam
#36754264Tuesday, November 09, 2010 1:26 PM GMT

Blame John.
Ubermacht
#36754310Tuesday, November 09, 2010 1:30 PM GMT

Blaming the staff is all very well, however I still need a solution. On a side note, thank you for everyone who tried to help me. :)
Ubermacht
#36768646Tuesday, November 09, 2010 10:29 PM GMT

Anyone?
Ubermacht
#36823756Thursday, November 11, 2010 2:17 AM GMT

Must be a solution. :/
thenumber1peep
#36826162Thursday, November 11, 2010 2:58 AM GMT

well for welding i usely use the welding tool under build. its very dumbed down in my book, but its easy and works!
Ubermacht
#36826324Thursday, November 11, 2010 3:01 AM GMT

I would LOVE if that worked, but for coordinate frame you need to use a script to weld.
Ubermacht
#36827187Thursday, November 11, 2010 3:16 AM GMT

Could it be that not all the parts that the script is welding are actually touching the BasePart?
Ubermacht
#36840733Thursday, November 11, 2010 4:09 PM GMT

No, not that.

    of     2   
chevron_rightchevron_rightchevron_right