β¬οΈExports
Notify Export
Usage
exports["gfx-notify"]:Notify(type, "Test", "This is a test notification", 5000, icon)
You don't need to write the duration and icon. It will get it from the notification type if you don't define them.
Question Export
Usage
exports["gfx-notify"]:Question("Hello this is the question?", 5000, function()
print("Clicked Yes")
end, function()
print("Clicked No")
end)
Question Parameters
p1: question string
p2: duration
p3: function will be called when pressed yes
p4: function will be called when pressed no
Last updated