Advertisement
MaxproGlitcher

scritp notification by Max

Aug 18th, 2022 (edited)
1,430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "Joueurs qui rejoint",
  3. Text = "Script a ÊtÊ executer",
  4. Icon = "rbxassetid://11823384169",
  5. Duration = 15
  6. })
  7. local function onPlayerAdded(player)
  8. -- code pour la notification des joueurs qui rejoint le jeux
  9. game.StarterGui:SetCore("SendNotification", {
  10. Title = "Un joueur a rejoint!",
  11. Text = "Bienvenu a" .. player.Name .. " d'avoir rejoint le server!",
  12. Duration = 15, -- mes le temps que tu veux metre qui s'affiche
  13. })
  14. end
  15.  
  16. game.Players.PlayerAdded:Connect(onPlayerAdded)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement