#Decal showing itself in mouth

6 messages · Page 1 of 1 (latest)

waxen valley
#

can anyone help me with this?

Decal instead of showing on face shows itself in mouth (?)

Code:

local player = game.Players.LocalPlayer
local decal = script.Decal:Clone()
decal.Parent = player.Character.Head
decal.Transparency = 0
#

(look at that red thing)

#

problem is only with r6 rig, r15 works perfectly

sweet egret
#

should already be a decal on the player's head, so just do

local decal = "rbxassetid://7317606"

game.Players.PlayerAdded:Connect(function(plr)
    plr.CharacterAdded:Connect(function(char)
        task.wait(1)
        char.Head.face.Texture = decal
    end)
end)

#

also on a local script nobody else will be able to see the face besides you because it's client sided

#

so put this script in the serverscriptservice, change the id to ur decal id that u want