#Decal showing itself in mouth
6 messages · Page 1 of 1 (latest)
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