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! 
1 Like