|
| 24 Mar 2015 02:14 AM |
local partNames = {'Torso', 'Right Leg', 'Right Arm', 'Left Leg', 'Left Arm'} local parts = {} local Bevels = Instance.new('Folder',workspace) Bevels.Name = 'BevelParts' local curModel local ii = 0
function addToTB(obj) if obj:IsA('Part') then table.insert(parts, obj) obj.Material = 'SmoothPlastic' ii = ii + 1 print(ii..' - '..obj.Name..' added to Part list!') end if obj:IsA('BlockMesh') and obj.Scale == Vector3.new(1,1,1) then print(obj.Name.. 'DESTROYED TO ENSURE BEVEL') obj:Destroy() return end for i,v in pairs(obj:GetChildren()) do addToTB(v) end end
addToTB(workspace)
ii = 0
while #parts > 0 do curModel = Instance.new('Model',Bevels) curModel.Name = 'BevelParts' Instance.new('Humanoid',curModel) for i = 1,5 do if not parts[i] then break end ii = ii + 1 parts[i].Name = partNames[i] parts[i].Parent = curModel print(ii..' - '..parts[i].Name..' : BEVEL --- '..(#parts - 1)..' Parts left!') table.remove(parts, i) end end
print('Bevelizer by verbalAKspray completed!') |
|
|
| Report Abuse |
|
|
Foliant
|
  |
| Joined: 13 Dec 2014 |
| Total Posts: 9515 |
|
|
| 24 Mar 2015 02:15 AM |
what does it do
i am da cool kid |
|
|
| Report Abuse |
|
|
| |
|
Foliant
|
  |
| Joined: 13 Dec 2014 |
| Total Posts: 9515 |
|
|
| 24 Mar 2015 02:17 AM |
but it might screw with my game :3
i am da cool kid |
|
|
| Report Abuse |
|
|
|
| 24 Mar 2015 02:19 AM |
| it will make it look cool i'm fr |
|
|
| Report Abuse |
|
|
Foliant
|
  |
| Joined: 13 Dec 2014 |
| Total Posts: 9515 |
|
|
| 24 Mar 2015 02:20 AM |
i tested it and i could see through the baseplate WAT HAX1!1
i am da cool kid |
|
|
| Report Abuse |
|
|
| |
|
|
| 24 Mar 2015 02:21 AM |
you're supposed to test it at a place with a lot of parts
it makes them all have rounded edges it's cool |
|
|
| Report Abuse |
|
|
Foliant
|
  |
| Joined: 13 Dec 2014 |
| Total Posts: 9515 |
|
| |
|
| |
|
nuke98
|
  |
| Joined: 16 Jul 2008 |
| Total Posts: 25506 |
|
|
| 24 Mar 2015 03:49 AM |
Tracking and trying it tomorrow when on PC I'm curious
Also nobody is in LMaD right now ggnore |
|
|
| Report Abuse |
|
|
2Btc
|
  |
| Joined: 15 Feb 2015 |
| Total Posts: 1330 |
|
|
| 24 Mar 2015 03:54 AM |
This is so weird LOL
Sup nerds ;3 -Kizalo- |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
Foliant
|
  |
| Joined: 13 Dec 2014 |
| Total Posts: 9515 |
|
|
| 24 Mar 2015 05:11 AM |
perfection go away
i am da cool kid |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
|
| 24 Mar 2015 06:41 AM |
| http://www.roblox.com/Bevelizer-Rounded-Edges-item?id=229842030 |
|
|
| Report Abuse |
|
|
| |
|
HexC3D
|
  |
| Joined: 30 Jun 2012 |
| Total Posts: 10044 |
|
| |
|
LePosh
|
  |
| Joined: 01 Mar 2015 |
| Total Posts: 3694 |
|
|
| 24 Mar 2015 04:06 PM |
I don't get why you made a dumb for-loop so inefficiently ; p
|
|
|
| Report Abuse |
|
|
| |
|
|
| 24 Mar 2015 04:07 PM |
@leposh why is it innefficient
i had to make it do 5 at a time because the maximum parts a model can hold to make the bevels is 5 |
|
|
| Report Abuse |
|
|