Im made a script where if you interact with the prompt it clones the item into your inventory. It works but the inventory does not show he’s a picture. Oh and it also shows in the backpack.
local Patty = game.Workspace:WaitForChild("FoodItems"):WaitForChild("Patty")
local Prox = Patty.ProximityPrompt
local PattyRep = game.ReplicatedStorage:FindFirstChild("Patty")
Prox.Triggered:Connect(function(plr)
if plr then
local PattyClone = PattyRep:Clone()
PattyClone.Parent = plr.Backpack
end
end)