#How to reconnect functions?

1 messages · Page 1 of 1 (latest)

shrewd solstice
#
local connection = game.Workspace.Part.Touched:Connect(function()
    print("ye")
end)
connection:Disconnect()

I disconnect it, but how would I reconnect it?

echo lake
#
local connection = game.Workspace.Part.Touched:Connect(function()
    print("ye")
end)

just do this again