simple question, wondering how i can pass a custom value to a function connected like
GUI.Button.MouseButton1Up:Connect(Function)
is there any way to do this? i want it to send info like how calling a function like this could
function("Nice info here")
i know i could do
GUI.Button.MouseButton1Up:Connect(Function()
otherfunction(info)
end)
but wondering if theres anything more elegant