This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local module = {} | |
| -- Cleansed and Modifiedby zk7_2 | |
| function module.load(plr) | |
| local ScreenGui = Instance.new("ScreenGui") | |
| local Base = Instance.new("Frame") | |
| local Top = Instance.new("Frame") | |
| local First = Instance.new("TextLabel") | |
| local Second = Instance.new("TextLabel") | |
| local Location = Instance.new("TextLabel") | |
| local Exit = Instance.new("TextButton") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import sys | |
| try: | |
| __import__("pdfplumber") | |
| except ImportError: | |
| print("pdfplumber not found, Installing package") | |
| subprocess.check_call([sys.executable], '-m', 'pip', 'install', 'pdfplumber') | |
| try: |