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)