File size: 9,853 Bytes
fe3696d
 
4d1f09a
 
 
 
416ca8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4d1f09a
 
 
416ca8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4d1f09a
 
 
416ca8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4d1f09a
fe3696d
4d1f09a
fe3696d
4d1f09a
 
 
fe3696d
4d1f09a
 
 
 
fe3696d
4d1f09a
 
 
 
 
fe3696d
 
4d1f09a
 
fe3696d
 
 
4d1f09a
fe3696d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
import gradio as gr

# Function to generate platform-specific commands for selected hack
def generate_hack_commands(hack_type, platform):
    if hack_type == "Speed Hack":
        commands = {
            "Termux (Android)": """
            ## Installation and Setup for Termux (Android)
            1. Install Termux from the Play Store.
            2. Update packages in Termux:
               ```bash
               pkg update && pkg upgrade
               pkg install python
               pkg install git
               pip install --upgrade pip
               pip install gradio torch transformers
               ```
            3. Clone the repository or create the Python script:
               ```bash
               nano roblox_hacks_maker.py
               ```
            4. Paste the script inside the `roblox_hacks_maker.py` file, then save and close.
            5. Run the script:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. Access the interface in your browser by visiting the local server URL shown in Termux.
            7. To enable Speed Hack, run this command in the script:
               ```bash
               exploit_injector --speed hack
               ```
            """,
            "Windows": """
            ## Installation and Setup for Windows
            1. Install Python from the official [Python website](https://www.python.org/downloads/).
            2. Open Command Prompt (CMD) and run:
               ```bash
               pip install gradio torch transformers
               ```
            3. Clone the repository or create the Python script:
               ```bash
               notepad roblox_hacks_maker.py
               ```
            4. Paste the script into the file and save.
            5. Run the script:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. Access the interface in your browser by visiting the local server URL (usually `http://127.0.0.1:7860`).
            7. To enable Speed Hack, run this command in the script:
               ```bash
               loadstring(game:HttpGet('https://www.speedhack.com/script.lua'))()
               ```
            """,
            "iOS": """
            ## Installation and Setup for iOS
            1. Install a jailbreaking tool for iOS and ensure your device is jailbroken.
            2. Install Python through Cydia (or other package managers).
            3. Install the necessary Python packages:
               ```bash
               pip install gradio torch transformers
               ```
            4. Create or clone the Python script (`roblox_hacks_maker.py`).
            5. Run the script with:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. To enable Speed Hack, use a jailbreak app to inject the following script:
               ```bash
               loadstring(game:HttpGet('https://www.speedhack.com/script.lua'))()
               ```
            """
        }
    elif hack_type == "Aimbot":
        commands = {
            "Termux (Android)": """
            ## Installation and Setup for Termux (Android)
            1. Install Termux from the Play Store.
            2. Update packages in Termux:
               ```bash
               pkg update && pkg upgrade
               pkg install python
               pkg install git
               pip install --upgrade pip
               pip install gradio torch transformers
               ```
            3. Clone the repository or create the Python script:
               ```bash
               nano roblox_hacks_maker.py
               ```
            4. Paste the script inside the `roblox_hacks_maker.py` file, then save and close.
            5. Run the script:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. Access the interface in your browser by visiting the local server URL shown in Termux.
            7. To enable Aimbot, run this command in the script:
               ```bash
               loadstring(game:HttpGet('https://www.aimbot.com/script.lua'))()
               ```
            """,
            "Windows": """
            ## Installation and Setup for Windows
            1. Install Python from the official [Python website](https://www.python.org/downloads/).
            2. Open Command Prompt (CMD) and run:
               ```bash
               pip install gradio torch transformers
               ```
            3. Clone the repository or create the Python script:
               ```bash
               notepad roblox_hacks_maker.py
               ```
            4. Paste the script into the file and save.
            5. Run the script:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. Access the interface in your browser by visiting the local server URL (usually `http://127.0.0.1:7860`).
            7. To enable Aimbot, run this command in the script:
               ```bash
               loadstring(game:HttpGet('https://www.aimbot.com/windows-script.lua'))()
               ```
            """,
            "iOS": """
            ## Installation and Setup for iOS
            1. Install a jailbreaking tool for iOS and ensure your device is jailbroken.
            2. Install Python through Cydia (or other package managers).
            3. Install the necessary Python packages:
               ```bash
               pip install gradio torch transformers
               ```
            4. Create or clone the Python script (`roblox_hacks_maker.py`).
            5. Run the script with:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. To enable Aimbot, use a jailbreak app to inject the following script:
               ```bash
               loadstring(game:HttpGet('https://www.aimbot.com/ios-script.lua'))()
               ```
            """
        }
    elif hack_type == "Fly Hack":
        commands = {
            "Termux (Android)": """
            ## Installation and Setup for Termux (Android)
            1. Install Termux from the Play Store.
            2. Update packages in Termux:
               ```bash
               pkg update && pkg upgrade
               pkg install python
               pkg install git
               pip install --upgrade pip
               pip install gradio torch transformers
               ```
            3. Clone the repository or create the Python script:
               ```bash
               nano roblox_hacks_maker.py
               ```
            4. Paste the script inside the `roblox_hacks_maker.py` file, then save and close.
            5. Run the script:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. Access the interface in your browser by visiting the local server URL shown in Termux.
            7. To enable Fly Hack, run this command in the script:
               ```bash
               loadstring(game:HttpGet('https://www.flyhack.com/script.lua'))()
               ```
            """,
            "Windows": """
            ## Installation and Setup for Windows
            1. Install Python from the official [Python website](https://www.python.org/downloads/).
            2. Open Command Prompt (CMD) and run:
               ```bash
               pip install gradio torch transformers
               ```
            3. Clone the repository or create the Python script:
               ```bash
               notepad roblox_hacks_maker.py
               ```
            4. Paste the script into the file and save.
            5. Run the script:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. Access the interface in your browser by visiting the local server URL (usually `http://127.0.0.1:7860`).
            7. To enable Fly Hack, run this command in the script:
               ```bash
               loadstring(game:HttpGet('https://www.flyhack.com/windows-script.lua'))()
               ```
            """,
            "iOS": """
            ## Installation and Setup for iOS
            1. Install a jailbreaking tool for iOS and ensure your device is jailbroken.
            2. Install Python through Cydia (or other package managers).
            3. Install the necessary Python packages:
               ```bash
               pip install gradio torch transformers
               ```
            4. Create or clone the Python script (`roblox_hacks_maker.py`).
            5. Run the script with:
               ```bash
               python roblox_hacks_maker.py
               ```
            6. To enable Fly Hack, use a jailbreak app to inject the following script:
               ```bash
               loadstring(game:HttpGet('https://www.flyhack.com/ios-script.lua'))()
               ```
            """
        }
    else:
        commands = "No commands available for this hack type."

    return commands.get(platform, "No commands available for this platform.")

# Gradio interface to select hack and platform
def create_interface():
    hack_types = ["Speed Hack", "Aimbot", "Fly Hack"]
    platforms = ["Termux (Android)", "Windows", "iOS"]

    # Create the Gradio interface
    interface = gr.Interface(
        fn=generate_hack_commands,
        inputs=[
            gr.Dropdown(choices=hack_types, label="Select Hack Type"),
            gr.Dropdown(choices=platforms, label="Select Platform")
        ],
        outputs="text",
        live=True,
        title="Roblox Hacks Maker - Commands",
        description="Select a hack type and platform to view the corresponding commands for Roblox hacks."
    )
    return interface

# Launch the interface
if __name__ == "__main__":
    create_interface().launch()