Changing images on a characters head

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    changing images on a characters head

  2. What is the issue? Include screenshots / videos if possible!
    no scripts I’ve tried didn’t work

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    yep mostly

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

So you mean… the face? That’s a decal named face.

no like i want a billboard gui ontop of the head with a imagelabel that changes

For example?

This is probably because your search was very specifc.

add the billboard gui to the characters head, make an image frame then change its image

-- server script
game.Players.PlayerAdded:Connect(function(player)
     player.CharacterAdded:Connect(function(char)
           local bb = Instance.new("BillboardGui", char:WaitForChild("Head"))
           bb.Size = Udim2.new(0,150,0,150)
           -- customise billboards properties
           local imagef = Instance.new("ImageFrame", bb)
           imagef.Size = Udim2.new(1,0,1,0)
           -- customise imagef properties
           imagef.Image = "rbxassetid://", --the id
    end)
end)

i believe this is what you were asking for, if not then my bad. i dont know if the script works 100% but if not then just change 1 or 2 things