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

How would I make a "dual wield" grip for two items?

Asked by 8 years ago

I have nowhere to start, so I came here. All I want to know is wether or not it is possible, if so how, to make a "dual wielded" tool. Not just some lazy combination of parts for the appearance of dual wielding, but actual grip welds. Grip welds as in the kind of welds that weld the tool to your left arm.

Any help is appreciated, thanks!

1 answer

Log in to vote
1
Answered by 8 years ago

Create a Weld

first we set the variables

note: the variables are just examples

player = game.Player.LocalPlayer weapon = game.ReplicatedStorage:WaitForChild("Weapon")

local weld = Instance.new("Weld")
weld.Parent = weapon.Handle
weld.Part0 = player.Character["Left Arm"]
weld.Part1 = weapon.Handle
weld.C0 = CFrame.new(0,1,0)
Ad

Answer this question