You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
changing images on a characters head
What is the issue? Include screenshots / videos if possible!
no scripts I’ve tried didn’t work
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!
Tavikron
(Octav)
December 1, 2024, 4:38pm
2
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
bnxDJ
(bnx)
December 1, 2024, 5:31pm
4
For example?
This is probably because your search was very specifc.
I am trying to add images to my billboard guis that are on top of NPC models. However, the images seem to be cut in half and I can’t figure out what is causing this issue. Does anyone know what the issue is?
[image]
local Image = script.Parent
while true do
Image.Image = "http://www.roblox.com/asset/?id=4504065102"
wait(1)
Image.Image = "http://www.roblox.com/asset/?id=4504066589"
end
The image isn’t changing, idk what im doing wrong
Hello I need some help, I don’t know how to create a ‘BillboardGui’ over the head of the local player, could someone tell me please how to do it
i want something like this:
[image]
Only local player can see that
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