MaxproGlitcher

print le dernier servers public ou tu était

Nov 13th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local HttpService = game:GetService("HttpService")
  3.  
  4. local function copyJobId()
  5. local jobId = game.JobId
  6. setclipboard(jobId)
  7. print("Job ID copied: " .. jobId)
  8. end
  9.  
  10. Players.PlayerRemoving:Connect(function(player)
  11. copyJobId()
  12. end)
  13.  
  14. Players.PlayerAdded:Connect(function(player)
  15. player.Leaving:Connect(function()
  16. copyJobId()
  17. end)
  18. end)
  19.  
Advertisement
Add Comment
Please, Sign In to add comment