Problem with customers system

hello guys im new scripter and i trying to make small game and i made customer system and i have bugs with system

questions i have

1.how to fix that

2.how to make randomized customers

this all

vide of problem:

and file of project
system.rbxl (146.4 KB)

Maybe this will help:

Local script in Chips Tool:

local character = game.Workspace.chips_customer:WaitForChild("Head4")
local p = script.Parent

if character then -- check if character exists
	p.Equipped:Connect(function()
		character.ProximityPrompt.Enabled = true
	end)

	p.Unequipped:Connect(function()
		character.ProximityPrompt.Enabled = false
	end)

	character.ProximityPrompt.Triggered:Connect(function()
		p:Destroy()
	end)
end
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.