SMS APP |
YouTube |
Twitter |
NoPixel style phone notification.
[CLIENT] Send notification to player
exports['co_notify']:SendNotify('mesaj', "Title", "message")[SERVER] Send message to source player.
TriggerClientEvent('co_notify:client:SendNotifys', source, { app = "twitter" , title = "Title", content = "message" })[SERVER] Send message to all players.
for _, i in ipairs(GetPlayers()) do
TriggerClientEvent('co_notify:client:SendNotifys', i, { app = "twitter" , title = "Title", content = "message" })
end

