-
What do you want to achieve?
I want to place my Pika Sword on the players right arm, without making it a tool for a lunge ability -
What is the issue? I
The Player Should be holding the part, but the part is in the torso it seems like
local function giveSword(character)
local arm = character:WaitForChild("Right Arm", 1)
if (arm ~= nil) then
local s = sword:Clone()
s.Parent = character
local w = Instance.new("Motor6D")
w.Part0 = arm
w.Part1 = s
w.Parent = arm
end
end```
code of the script