Getting the parameters of an event only once

Hey, i want to get the parameters of an event only once, i need that for an callback system:
Ive tried stuff like this:

local connection
		local res = ""
		
		connection = Callback.OnServerEvent:Connect(function(sender, res)
			
			print(res)
			
			connection:Disconnect()
		end)
		
		print(res)

		Callback:Destroy()

(res will not update)

You never set res to what res is in the event. You only printed it.