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

Only one decal/texture shows up on character face?

Asked by 1 year ago

In my game, the character has 2 decals on their face, one for Beast Mode, and one for Dead players. The problem is, only one of these decals shows up. The Beast Mode face. Any other decals i try to get to show up just won't. When i try changing the beast mode decal texture to something else ingame, it doesn't work I have these decals added through a script below if you want to look at that.

a picture of what im talking about

The code putting these decals onto the characters face.

local beast = Instance.new("Decal", char.Head)
beast.Texture = "http://www.roblox.com/asset/?id=11439636896" -- 11439636896
beast.Transparency = 1
beast.Face = "Front"

local death = Instance.new("Texture", char.Head)
death.Texture = "http://www.roblox.com/asset/?id=11439344041"
death.Transparency = 1
death.Name = "death"
death.Face = "Front"

Answer this question