I'm currently coding a first person viewmodel. I'm trying to weld a brick to the camera's CFrame and weld all the other bricks (ex. arms, legs, gun) to that. It works fine for two arms, but when I add some more welds, my arm welds break.
01 | local player = game.Players.LocalPlayer |
02 | local character = game.Workspace:WaitForChild(player.Name) |
03 | local cam = game.Workspace.CurrentCamera |
04 | local r = game:GetService( "RunService" ) |
05 |
06 | wait( 0.5 ) |
07 |
08 | ----------------------------------------------------------------------------- |
09 |
10 | _G.weld = function (Part 0 , Part 1 , offset) |
11 |
12 | local weld = Part 1 :FindFirstChild( "Weld" ) |
13 |
14 | if weld = = nil then |
15 |
It's now obsolete and impossible to weld parts to the camera. You currently have to put a local script into StarterCharacterScripts (Maybe StarterPlayerScripts, I forget, try both) and you have to put the viewmodel into either lighting, replicatedstorage, or replicatedfirst. I recommend using Motor6Ds instead of welds, as it'll make thing easier later when you start animating.