Hey developers
I have recently released a brand new notification module that can be applied to anything you need!
You can get the model here: https://create.roblox.com/store/asset/109499740735292/Notification-Template
–
Some examples:
-
When you redeem a valid code
-
When you redeem a invalid code
-
When someone has enough money to purchase something
–
How to use this module:
The function passes through four values, you must have each!
module.notificationPlay = function(text, textColor3, amount, time)
To call the function inside any script, require the module, and then call the function, and then pass though all the things you want!
–
How it should look:
local notificationConfig = require(game.ReplicatedStorage:WaitForChild("NotificationConfig"))
notificationConfig.notificationPlay("This is a test", Color3.new(1, 0.278431, 0.290196), 1, 5)
–
This is my first devforum post so sorry if it seems weird!