im trying to make it so if i spawn in i spawn in with a prankster face:
local Character = script.Parent local Head = Character:WaitForChild('Head') wait(1) game.Players.PlayerAdded:connect(function(player) if player.Name == "forsakern" then local Character = script.Parent local Head = Character:WaitForChild('Head') Head.face.Texture = 'rbxassetid://20052028' end end)
Why isnt this working?
Hi. This should work. Make sure your head is not covered by accessories.
local Character = script.Parent local Head = Character:WaitForChild('Head') wait(1) if Character.Name == "forsakern" then local Character = script.Parent -- You can remove this line local Head = Character:WaitForChild('Head') -- and this line Head.face.Texture = 'rbxassetid://20052028' end