I want to register one touch on a part so I can put how many people have touched it on a GUI. Right now, it's registering 2 or 3 parts every time I touch it
local TPWallLeft = script.Parent.Parent.Parent local Billboard = script.Parent.Parent local PlayerGUI = script.Parent local PlayerCount = Instance.new("IntValue") TPWallLeft.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("HumanoidRootPart") then PlayerCount.Value = PlayerCount.Value + 1 end end) wait(15) print(PlayerCount.Value)