its weird nothing happens, heres my script
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function()
local axe = game:GetService("ReplicatedStorage").axes.BasicAxe:Clone()
axe.Parent = plr.Character
local weld = Instance.new("WeldConstraint")
weld.C0 = plr.Character.RightHand
weld.C1 = axe
end)
end)
1 Like
war44malk
(YZAmerican)
#2
Is the axe a tool? You can’t weld a tool…
1 Like
no, its a mesh part that i modeled in blender
1 Like
war44malk
(YZAmerican)
#4
weld.Part0 = plr.Character.RightHand
weld.Part1 = axe
Try this instead, I think that’s for Positions or CFrame whtever.
its still not welded weirdly… its not even in the character
keremMCT
(Pepsi_Cat)
#6
You got literally everything wrong here. WeldConstraints doesnt auto-position Part1 to Part0. It leaves the relative distance. Use welds
i tried both, still nothing. i dont understand