How would I make it so that the player would have a part welded to their arm all the time?
you would create a weld when the player joins and have part 0 be part and part 2 be hand in a server script:
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | local char = game.Workspace:WaitForChild(plr.Name) |
3 | local Weld = Instance.new( "Weld" ) |
4 | Weld.Part 0 = char.RightHand |
5 | Weld.Part 1 = game.Workspace.Part --make this be the part u want to go there |
6 | Weld.Parent = game.Workspace.Part --make this be the part u want to go there |
7 | end ) |
plz tell me if this didn't work as i quickly whipped it up