DevVince
|
  |
| Joined: 08 Nov 2008 |
| Total Posts: 9245 |
|
|
| 10 Aug 2016 04:32 PM |
I've been using a script I have in my models to weld things and I've grown tired of having to put the script in the model and hit play so I made this plugin that will weld and clear welds. I have also noticed people use WAY to many welds in most things I see welded around Roblox so this can also help reduce welds in older welded objects it's quick and simple to use.
Just click on the model you wish to clear or weld and press the but plugin buttons.
https://www.roblox.com/Weld-Master-item?id=476629268 --Just letting you guys know about it, hope you enjoy if you download it. If there are any problems send me a msg asap and i'll fix it asap. |
|
|
| Report Abuse |
|
|
DevVince
|
  |
| Joined: 08 Nov 2008 |
| Total Posts: 9245 |
|
|
| 10 Aug 2016 04:49 PM |
| Just opened free models click on the Pine Tree on the top row removed welds with the plugin and then re-welded it, I tested the amount of welds both times and it welded the tree using 200 less welds! Image that you have 40 trees in your game 40*200=8,000 less welds, games will load faster and run smoother! |
|
|
| Report Abuse |
|
|
DevVince
|
  |
| Joined: 08 Nov 2008 |
| Total Posts: 9245 |
|
|
| 10 Aug 2016 04:55 PM |
If you guys want to compare you can run this in your command bar to view the changes.
local parts = 0 local function findParts(area) for i,v in pairs(area:GetChildren()) do parts = parts + 1 if #v:GetChildren() > 0 then findParts(v) end end end findParts(workspace) print('Objects in game: '..parts)
--Run it before and after re-welding something. :p |
|
|
| Report Abuse |
|
|