Value turning 0, instead of an asset id number

Im making a game where there’s a custom character(GUI Custom Character[No Humanoid/ Bodyparts{The character is a image}]). Script i created:

	local profilecharacter = Instance.new("NumberValue", userprofile)
	local profileface = Instance.new("NumberValue", userprofile)
	local profilecolor = Instance.new("Color3Value", userprofile)

	profilecharacter.Value = 8207800118
	profilecharacter.Name = "characterprofile"
	profileface.Value = 8207825395
	profileface.Name = "characterface"
	profilecolor.Value = Color3.fromRGB(255, 0, 0)
	profilecolor.Name = "charactercolor"

What happen:
image

image
Thank you for the help! i appreciate it!

Just directly change the “face” decal in the character’s head.

the character is a 2d image, not a 3d character(R6/R15)

I finally fixed it! :sweat_smile: i forgot that there was a custom character at the lobby so it makes the value to 0. Thanks anyways @EconomicSerg567 !