I'm trying to bring back old ROBLOX. But this script that's supposed to remove bevels won't work. Help?
print('De-Bevel') larm = game.Players.LocalPlayer.Character:FindFirstChild("Left Arm") rarm = game.Players.LocalPlayer.Character:FindFirstChild("Right Arm") lleg = game.Players.LocalPlayer.Character:FindFirstChild("Left Leg") rleg = game.Players.LocalPlayer.Character:FindFirstChild("Right Leg") t = game.Players.LocalPlayer.Character.Torso m1 = script.Mesh:Clone() m2 = script.Mesh:Clone() m3 = script.Mesh:Clone() m4 = script.Mesh:Clone() m5 = script.Mesh:Clone() m1.Parent = larm m2.Parent = rarm m3.Parent = lleg m4.Parent = rleg m5.Parent = t
local character = game:GetService'Players'.LocalPlayer.Character or game:GetService'Players'.LocalPlayer.CharacterAdded:wait() local mesh = script:WaitForChild'Mesh' mesh:Clone().Parent = character:WaitForChild'Left Arm' mesh:Clone().Parent = character:WaitForChild'Right Arm' mesh:Clone().Parent = character:WaitForChild'Left Leg' mesh:Clone().Parent = character:WaitForChild'Right Leg' mesh:Clone().Parent = character:WaitForChild'Torso'
While the bevel mesh as an object no longer exists, ROBLOX still applies a bevel to the body of a character, more specifically the Humanoid object triggers this.
Bevels were removed. You are wrong in saying they exist in any form.
http://wiki.roblox.com/index.php?title=Bevels_(Setting)
http://blog.roblox.com/2013/04/bye-bye-bevels-the-first-step-toward-our-new-look/
http://blog.roblox.com/2013/03/rendering-changes-and-improved-performance-are-coming-soon/
They do not exist anymore.