Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

De-Bevel works in studio but not in real game?

Asked by 10 years ago

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
1
Cause bevels were removed. OniiCh_n 410 — 10y
0
Are you using a Script, or a LocalScript? BlueTaslem 18071 — 10y
0
local. Grenaderade 525 — 10y
0
BTW bevels were removed on bricks not your character. Grenaderade 525 — 10y
0
put a brickmesh on each character part (brickmeshes, however, remove clothing) Bisoph 5 — 6y

2 answers

Log in to vote
2
Answered by 10 years ago
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.

0
Thanks bro, it works! Grenaderade 525 — 10y
0
Oh wow, 4 years later and you helped me too. Thank you! addictedroblox1414 166 — 5y
Ad
Log in to vote
-1
Answered by
iaz3 190
10 years ago

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.

0
Not bricks your character. Grenaderade 525 — 10y

Answer this question