Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local HttpService = game:GetService("HttpService")
- local function copyJobId()
- local jobId = game.JobId
- setclipboard(jobId)
- print("Job ID copied: " .. jobId)
- end
- Players.PlayerRemoving:Connect(function(player)
- copyJobId()
- end)
- Players.PlayerAdded:Connect(function(player)
- player.Leaving:Connect(function()
- copyJobId()
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment