Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Check if setclipboard is available
- if not setclipboard then
- print("Your executor does not support clipboard functionality.")
- return
- end
- -- Get the Place ID
- local placeId = game.PlaceId -- Place ID
- -- Copy Place ID to clipboard
- setclipboard(tostring(placeId))
- -- Print confirmation
- print("Place ID copied to clipboard: " .. placeId)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement