I've tried welding a part to a player in studio but It never seemed to work, I've looked online but I just cant find a script that actually welds something to a player. Can someone help, or at least send a video that might help?
Just Do
game.Players.PlayerAdded:Connect(function(Player) -- Player Player.CharacterAdded:Connect(function(Char() -- Character local Head = Char.Head -- Character's Body Part local Part = game.Workspace.Part -- Directory To Part To Weld local Weld = Instance.new('Weld', Head) -- Create Wel Weld.Part1 = Part Weld.Part0 = Head end) end) -- End
This page should have everything you need: https://developer.roblox.com/en-us/api-reference/class/WeldConstraint