Apprise allows you to easily send in-game notifications to players, and it can be customized to your choice very easily even if you’re not a scripter!!
He means its very basic, using StarterGui:SetCore() is quite easy and what most people can do. Having a tutorial for this doesn’t really make sense imo.
I mean, I made this for people who don’t know scripting. And I also put the meaning of the code in the script so that they can understand. Even if it is basic, it could help them learn something new…
Most people don’t use this either, this is just a very simple example of how you can use Roblox’ core notifications.
Normally you can use the following in a LocalScript:
local CoreGui = game:GetService("StarterGui")
CoreGui:SetCore("SendNotification", {
Title = "Notification";
Text = "With some text";
Duration = 5;
Button1 = "Dismiss";
})
The only thing this “Notification system” allows you, is to add a RemoteEvent so you can fire the notification from a ServerScript. This resource is meant to save you one minute of work (I guess).