Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

SendNotification SetCore Help?

Asked by 8 years ago

I do not know how to use Sendnotification, but I attempted to. BUT it did not work.

Source:

StarterGui > LocalScript

game:GetService("StarterGui"):SetCore("SendNotification") {
    Title = "Test"
    Text = "Test2"
    Duration = 500
}
1
Currently disabled... M39a9am3R 3210 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

Here's the fixed version...

game:GetService("StarterGui"):SetCore("SendNotification", {
    Title = "Test",
    Text = "Test2",
    Duration = 500
})

You were using the function incorrectly.

Moreover, the function is disabled currently.

Ad

Answer this question