Advertisement
MaxproGlitcher

script by Max pour voir les age des compt en game

Feb 25th, 2023 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "By MaxproGlitcher",
  3. Text = "Liser les icone",
  4. Icon = "rbxassetid://11823384169",
  5. Duration = 15
  6. })
  7.  
  8. wait(1)
  9.  
  10. game:GetService("StarterGui"):SetCore("SendNotification",{
  11. Title = "Faite Ctrl F9",
  12. Text = "pour ouvrir la console",
  13. Icon = "rbxassetid://13233094324",
  14. Duration = 15
  15. })
  16. wait(1)
  17.  
  18. game:GetService("StarterGui"):SetCore("SendNotification",{
  19. Title = "Pour imprimer",
  20. Text = "les joueur du servers",
  21. Icon = "rbxassetid://13233094324",
  22. Duration = 15
  23. })
  24.  
  25. game:GetService("StarterGui"):SetCore("SendNotification",{
  26. Title = "Pour voir les ages",
  27. Text = "Des compts crΓ©e!",
  28. Icon = "rbxassetid://13233094324",
  29. Duration = 15
  30. })
  31.  
  32. wait(4)
  33.  
  34. local players = game:GetService("Players"):GetChildren()
  35. local months = {
  36. "January", "Febuary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
  37. }
  38.  
  39. for i, v in pairs(players) do
  40. local secondsExisted = v.accountAge * 86400
  41. local dateObject = os.date("!*t", os.time() - secondsExisted)
  42. print(v.Name.." joined ROBLOX on "..months[dateObject.month].." "..dateObject.day..", "..dateObject.year.." and their user ID is "..v.UserId)
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement