help me make a script so that when you touch it, the image is visible only to the person who took it, and not to the entire server. Here is the script:
wait(5)
local part = workspace.capuchina
local gui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
local image = Instance.new("ImageLabel", gui)
gui.Enabled = false
image.Size = UDim2.new(0.3, 0, 0.6, 0)
image.AnchorPoint = Vector2.new(0.5, 0.5)
image.Position = UDim2.new(0.5, 0, 0.5, 0)
image.Image = "rbxassetid://103612459193614"
image.BackgroundTransparency = 1
part.touched:Connect(function(hit)
gui.Enabled = true
task.wait(4)
gui.Enabled = false
end)
** You are now Level 1! **