script.Parent.Touched:Connect(function() print("Touched") end)
Hello. Use Debounce
.
CanPrint = true script.Parent.Touched:Connect(function() if CanPrint == true then CanPrint = false print("Touched") script.Parent.BrickColor = BrickColor.new("Really red") wait(3) --Cooldown CanPrint = true script.Parent.BrickColor = BrickColor.new("Lime green") end end)