Banner Notify 2.0 Update!
1: Longer Notifications!
Now, you donāt have to worry about summarizing your notifications cause the Banner Notify 2.0 got your back. It will automatically resize base on your text length!
2: Configurations
ā¦is tha- ā¦is that a yellow background color? Wrong! Thatās beige still you can now edit the Background Color, Transparency and Content Color, Transparency upon calling the function BannerNotificationModule:Notify()
.
Howād that work?
In your script create a variable for a table. You can name it whatever you like;
local configs = {
.3, -- Background Transparency
Color3.fromRGB(0, 0, 0), -- Background Color
0, -- Content Transparency
Color3.fromRGB(255, 255, 255), -- Content Color
}
thatās the default configuration and this is where you put thatā¦
BannerNotification:Notify("Red Alert", "An error occurred!", "rbxassetid://14202377967", 5, configs)
There in the 5th arguments! This is optional if you donāt provide one the notification will be the default look.
What if I only want to provide the Content Color?
You can just nil
off the other ones like this;
local configs = {
nil,
nil,
nil,
Color3.fromRGB(255, 255, 255), -- Content Color
}
3: Smoother Exit Animation
New:
Old:
Watch the two clips together, and notice the 2 have different collapsing animation. The New one, once the notification above collapses it will smoothly hover back to the same position as the previously collapsed one. The Old one however kind of jumps back to the position, you know itās small addition