How Do I Make a Face Proximity Prompt?

I’m trying to make a proximity prompt that when you press it gives you a face (decal)

1 Like
ProximityPrompt.Triggered(function(Player)
local Face = Instance.new("Decal")
Face.Texture = "faceTexture"
Face.Transparency = 0
Face.Parent = Player.Character.Head
end)
3 Likes

Woah! Thanks alot! :slightly_smiling_face:

1 Like