Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

First person viewmodel error?

Asked by 7 years ago

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.

01local player = game.Players.LocalPlayer
02local character = game.Workspace:WaitForChild(player.Name)
03local cam = game.Workspace.CurrentCamera
04local r = game:GetService("RunService")
05 
06wait(0.5)
07 
08-----------------------------------------------------------------------------
09 
10_G.weld = function(Part0, Part1, offset)
11 
12    local weld = Part1:FindFirstChild("Weld")
13 
14    if weld == nil then
15 
View all 94 lines...

1 answer

Log in to vote
0
Answered by
Lyphios 77
5 years ago

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.

Ad

Answer this question