Advertisement
timmie140

Place ID

Jan 6th, 2025
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. -- Check if setclipboard is available
  2. if not setclipboard then
  3. print("Your executor does not support clipboard functionality.")
  4. return
  5. end
  6.  
  7. -- Get the Place ID
  8. local placeId = game.PlaceId -- Place ID
  9.  
  10. -- Copy Place ID to clipboard
  11. setclipboard(tostring(placeId))
  12.  
  13. -- Print confirmation
  14. print("Place ID copied to clipboard: " .. placeId)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement