Search Results
7/18/2025, 3:47:20 PM
7/17/2025, 8:18:38 AM
>>1858195
You're supposed to make your own plugin
[code]
game:GetService("ChangeHistoryService"):SetWaypoint("a")
xpcall(function()
local parts = {}
for _,v in ipairs(game:GetService("Selection"):Get()) do
if v:IsA("BasePart") then
table.insert(parts, v)
end
end
local last = table.remove(parts)
for _,v in ipairs(parts) do
local weld = Instance.new("WeldConstraint")
weld.Part0 = last
weld.Part1 = v
weld.Parent = last
end
end, warn)
game:GetService("ChangeHistoryService"):SetWaypoint("b")
[/code]
This command bar code welds all selected parts to the last selected one. Alt-drag over the model (because it doesn't get the descendants), deselect and reselect the primary part.
Beside this, there is already a built-in "weld all parts to each other" action in Studio. Select your parts then go to Model > Constraints > Create > Weld. I had to write my own welder because I didn't like which part it welded everything to and where it placed the welds.
You're supposed to make your own plugin
[code]
game:GetService("ChangeHistoryService"):SetWaypoint("a")
xpcall(function()
local parts = {}
for _,v in ipairs(game:GetService("Selection"):Get()) do
if v:IsA("BasePart") then
table.insert(parts, v)
end
end
local last = table.remove(parts)
for _,v in ipairs(parts) do
local weld = Instance.new("WeldConstraint")
weld.Part0 = last
weld.Part1 = v
weld.Parent = last
end
end, warn)
game:GetService("ChangeHistoryService"):SetWaypoint("b")
[/code]
This command bar code welds all selected parts to the last selected one. Alt-drag over the model (because it doesn't get the descendants), deselect and reselect the primary part.
Beside this, there is already a built-in "weld all parts to each other" action in Studio. Select your parts then go to Model > Constraints > Create > Weld. I had to write my own welder because I didn't like which part it welded everything to and where it placed the welds.
7/2/2025, 6:03:00 AM
6/27/2025, 1:33:15 PM
Today I dreamed I was having sex with a pajeeta and a pajeet. Both were much shorter than me, the Pajeeta was skinny and pretty and the jeet skinny but toned. I fucked the jeeta, then the jeet fucked me ass, then I fucked the jeet's ass, then I fucked the jeeta again. Woke up nutting. What could this mean?
6/24/2025, 4:30:04 PM
6/19/2025, 2:42:58 PM
6/19/2025, 12:03:42 PM
Page 1