How to save intValue even player reset

ecplorer is
unknown_2022.10.10-23.44
script is

local button = script.Parent.ClickCounter
local clickValue = script.Parent.ClickCount.Value 

button.MouseButton1Click:Connect(function()
	
	clickValue  = clickValue + 1
	
end)

I want to save this value even player die/reset.

Go to your screen gui and check off the property ResetOnSpawn (disable it)

Ok thank you so much for helping me B)