About 45,000 results
Open links in new tab
  1. How would you create a weld between two parts, using a script

    Sep 18, 2020 · As the title says: How would you create a weld between two parts, using a script?

  2. How to I weld my parts together? - Building Support - Roblox

    Aug 4, 2021 · Okay, so I don’t really build I tried to make a super basic gun, since I’m learning scripting. I was going to script it as, when I tried to hold the gun it didn’t work! Please help real quick. Edit: Only the handle is being put in my hand, otherelse the other parts are just being put on the floor near my AI

  3. Weld multiple parts to one specific part? - Scripting Support

    Apr 17, 2021 · Hello! I am making a tweening model, pretty simple. The only problem is that the model has a lot of parts, is there a plugin that anyone knows of that allows you to weld a lot of parts to one? I want to do this in studio, not by a script.

  4. A way to weld everything without manually doing it - Roblox

    May 21, 2020 · you could run a similar code in the command bar. local model = workspace.Model:GetChildren() -- or wherever the model is for i = 1, #model do local weld = Instance.new("Weld") weld.Part0 = model[i] weld.Part1 = model[i+1] -- to overcome an issue where model[i+1] = nil, we could pass the (second) EndValue of the numeric for loop as #Model:GetChildren() -1, but not an issue when running it ...

  5. Welding an object to the Player - Scripting Support - Roblox

    Apr 5, 2021 · Hello everyone, so to keep it simple and short… I am trying to weld a pair of wings to the player’s back when the player presses ‘R’. I already have the R button press detection and remote event fire set up. For some reason, the wings to spawn on the players back but they do NOT weld. They just fall.

  6. X-Welder — the best way to weld your models [FREE] - Roblox

    Jul 16, 2023 · Weld Teams Viewer Weld Teams Viewer (check welds) The weld command view is a very handy feature: you can select a model or a group of parts and easily see if the weld is solid. Button meanings: Select - ready to select parts, select parts or models and press the button. … - the process of defining groups is in progress.

  7. How to make two objects weld to each other when they touch and …

    Apr 25, 2023 · Hey there! I am trying to get parts to weld to each other when I activate a ProximityPrompt, but I can’t seem to get it working. Here are my scripts: this script is inside WeldedPart: local weldDebounce = false script.Parent.Touched:Connect(function(hit) if hit.Parent.Name == "WeldedPart" and hit.Parent.Transparency ~= 1 and hit.Name == "Droplet" and weldDebounce == false then weldDebounce ...

  8. How to join a part and mesh into one model? - Roblox

    Jun 27, 2023 · I tried grouping both in to a model but when unanchored they act as two separate entities, how do I make them act as one?

  9. How to weld objects onto an R6 character’s left hand? - Roblox

    Aug 10, 2021 · Pretty self explanatory, just need to know how to weld objects specifically on an R6 character’s left hand, as in the end of the left arm. I’m not very knowledgeable on CFrame so I don’t really know how Weld.C0 or Weld.C1 work. I have searched up on this topic many times before but I’ve never found a solution. Might be searching with the wrong keywords.

  10. Easily weld models to the players character - Roblox

    Sep 23, 2022 · ModelEquip Module | Documentation | Source Code Introduction ModelEquip allows users to easily weld and unweld models to the characters, which is useful when adding weapons, tools, armor, and other items to the player. Implementation To start, go ahead and grab the module and place it in ReplicatedStorage. After inserting the module, make sure to update the settings to fit your liking. They ...