SHOW:
|
|
- or go back to the newest paste.
1 | local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() | |
2 | - | local Window = OrionLib:MakeWindow({Name = "XyzWare", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) |
2 | + | local Window = OrionLib:MakeWindow({Name = "E-xploits", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) |
3 | ||
4 | IntroText= "Welcome" | |
5 | --[[ | |
6 | Name = <string> - The name of the UI. | |
7 | HidePremium = <bool> - Whether or not the user details shows Premium status or not. | |
8 | SaveConfig = <bool> - Toggles the config saving in the UI. | |
9 | ConfigFolder = <string> - The name of the folder where the configs are saved. | |
10 | IntroEnabled = <bool> - Whether or not to show the intro animation. | |
11 | IntroText = <string> - Text to show in the intro animation. | |
12 | IntroIcon = <string> - URL to the image you want to use in the intro animation. | |
13 | Icon = <string> - URL to the image you want displayed on the window. | |
14 | CloseCallback = <function> - Function to execute when the window is closed. | |
15 | ]] | |
16 | local Tab = Window:MakeTab({ | |
17 | Name = "LocalPlayer", | |
18 | Icon = "rbxassetid://4483345998", | |
19 | PremiumOnly = false | |
20 | }) | |
21 | ||
22 | --[[ | |
23 | Name = <string> - The name of the tab. | |
24 | Icon = <string> - The icon of the tab. | |
25 | PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only. | |
26 | ]] | |
27 | Tab:AddTextbox({ | |
28 | Name = "Walkspeed", | |
29 | Default = "16", | |
30 | TextDisappear = true, | |
31 | Callback = function(Value) | |
32 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value | |
33 | print(Value) | |
34 | end | |
35 | }) | |
36 | ||
37 | --[[ | |
38 | Name = <string> - The name of the textbox. | |
39 | Default = <string> - The default value of the textbox. | |
40 | TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus. | |
41 | Callback = <function> - The function of the textbox. | |
42 | ]] | |
43 | Tab:AddTextbox({ | |
44 | Name = "JumpPower", | |
45 | Default = "50", | |
46 | TextDisappear = true, | |
47 | Callback = function(Value) | |
48 | game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value | |
49 | print(Value) | |
50 | end | |
51 | }) | |
52 | ||
53 | --[[ | |
54 | Name = <string> - The name of the textbox. | |
55 | Default = <string> - The default value of the textbox. | |
56 | TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus. | |
57 | Callback = <function> - The function of the textbox. | |
58 | ]] | |
59 | - | Name = "Games", |
59 | + | |
60 | Name = "Da hood", | |
61 | Icon = "rbxassetid://4483345998", | |
62 | PremiumOnly = false | |
63 | }) | |
64 | ||
65 | --[[ | |
66 | Name = <string> - The name of the tab. | |
67 | Icon = <string> - The icon of the tab. | |
68 | PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only. | |
69 | ]] | |
70 | - | Name = "Da Hood" |
70 | + | |
71 | Name = "Scripts" | |
72 | }) | |
73 | ||
74 | --[[ | |
75 | Name = <string> - The name of the section. | |
76 | ]] | |
77 | - | Name = "Yo", |
77 | + | |
78 | - | Content = "You executed XyzWare!", |
78 | + | Name = "E-xploits executed", |
79 | Content = "Son them", | |
80 | Image = "rbxassetid://4483345998", | |
81 | Time = 5 | |
82 | }) | |
83 | ||
84 | --[[ | |
85 | Title = <string> - The title of the notification. | |
86 | Content = <string> - The content of the notification. | |
87 | Image = <string> - The icon of the notification. | |
88 | Time = <number> - The duration of the notfication. | |
89 | ]] | |
90 | Tab:AddButton({ | |
91 | Name = "Arctic", | |
92 | Callback = function() | |
93 | loadstring(game:HttpGet("https://polarsblade.xyz/Arctic/Arctic.txt"))() | |
94 | print("Arctic Executed!") | |
95 | end | |
96 | }) | |
97 | ||
98 | --[[ | |
99 | Name = <string> - The name of the button. | |
100 | Callback = <function> - The function of the button. | |
101 | ]] | |
102 | Tab:AddButton({ | |
103 | Name = "Pluto", | |
104 | Callback = function() | |
105 | loadstring(game:HttpGet('https://raw.githubusercontent.com/Scrvpter/Pluto/Lua/Loader.Lua', true))() | |
106 | print("Pluto Executed!") | |
107 | end | |
108 | }) | |
109 | ||
110 | --[[ | |
111 | Name = <string> - The name of the button. | |
112 | Callback = <function> - The function of the button. | |
113 | ]] | |
114 | Tab:AddButton({ | |
115 | Name = "SwagMode", | |
116 | Callback = function() | |
117 | loadstring(game:HttpGet('https://raw.githubusercontent.com/lerkermer/lua-projects/master/SwagModeV002'))() | |
118 | print("SwagMode Executed!") | |
119 | end | |
120 | }) | |
121 | ||
122 | --[[ | |
123 | Name = <string> - The name of the button. | |
124 | Callback = <function> - The function of the button. | |
125 | ]] | |
126 | Tab:AddButton({ | |
127 | Name = "Zinc Hub", | |
128 | Callback = function() | |
129 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Zinzs/luascripting/main/canyoutellitsadahoodscriptornot.lua"))() | |
130 | print("Zinc Hub Executed!") | |
131 | end | |
132 | }) | |
133 | ||
134 | --[[ | |
135 | Name = <string> - The name of the button. | |
136 | Callback = <function> - The function of the button. | |
137 | ]] | |
138 | Tab:AddButton({ | |
139 | Name = "RayCodex", | |
140 | Callback = function() | |
141 | loadstring(game:GetObjects("rbxassetid://5812737894")[1].Source)() | |
142 | print("RayCodex Executed!") | |
143 | end | |
144 | }) | |
145 | ||
146 | --[[ | |
147 | Name = <string> - The name of the button. | |
148 | Callback = <function> - The function of the button. | |
149 | ]] | |
150 | - | Name = "Faded (outdated)", |
150 | + | |
151 | Name = "Faded", | |
152 | - | loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded-Grid/main/YesEpic", true))() |
152 | + | |
153 | loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded/main/YesEpic", true))() | |
154 | print("Faded Executed!") | |
155 | end | |
156 | }) | |
157 | ||
158 | --[[ | |
159 | Name = <string> - The name of the button. | |
160 | Callback = <function> - The function of the button. | |
161 | ]] | |
162 | Tab:AddButton({ | |
163 | Name = "VinGui", | |
164 | Callback = function() | |
165 | loadstring(game:HttpGet("https://pastebin.com/raw/CYHWCgUj"))() | |
166 | print("VinGui Executed!") | |
167 | end | |
168 | }) | |
169 | ||
170 | --[[ | |
171 | Name = <string> - The name of the button. | |
172 | Callback = <function> - The function of the button. | |
173 | ]] | |
174 | - | Name = "Aimlock (q tool)", |
174 | + | |
175 | Name = "Kals Lock", | |
176 | Callback = function() | |
177 | loadstring(game:HttpGet("https://pastebin.com/raw/pRnBkKjz"))() | |
178 | print("Kim skidded Executed!") | |
179 | end | |
180 | }) | |
181 | ||
182 | --[[ | |
183 | Name = <string> - The name of the button. | |
184 | Callback = <function> - The function of the button. | |
185 | ]] | |
186 | - | Name = "Probs Aimlock", |
186 | + | |
187 | Name = "MoonGod v2", | |
188 | Callback = function() | |
189 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Ryzzchips/MOON-GOD-SCRIPTS/main/Ryzzchips%20tool"))() | |
190 | print("moongodv2 Executed!") | |
191 | end | |
192 | }) | |
193 | ||
194 | --[[ | |
195 | Name = <string> - The name of the button. | |
196 | Callback = <function> - The function of the button. | |
197 | ]] | |
198 | - | Name = "Another op lock", |
198 | + | |
199 | Name = "Rage trace lock", | |
200 | Callback = function() | |
201 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Ryzzchips/SubtoRyzzchips/6942334039b725b3ea380aaa7959949f938c2dc9/obf_swVYM0h5h3Rk75C9yprMgKc2ER64968pH0zAy2E30o3H3smBe01xnvZNwrm6oDYo.lua.txt", true))() | |
202 | print("RyzzChipz Executed!") | |
203 | end | |
204 | }) | |
205 | ||
206 | --[[ | |
207 | Name = <string> - The name of the button. | |
208 | Callback = <function> - The function of the button. | |
209 | ]] | |
210 | - | Name = "Mob+Pc Aimlock", |
210 | + | |
211 | Name = "Dx9", | |
212 | - | loadstring(game:HttpGet("https://raw.githubusercontent.com/Ryzzchips/SubtoRyzzchips/main/Sub%20to%20Ryzzchips%20for%20more%20New%20aimlock%20script!"))() |
212 | + | |
213 | loadstring(game:HttpGet('https://raw.githubusercontent.com/DX9user-renpy/DX9WARE/main/Private/UI/Lib/script.lua'))() | |
214 | print("Dx9 Executed!") | |
215 | end | |
216 | }) | |
217 | ||
218 | --[[ | |
219 | Name = <string> - The name of the button. | |
220 | Callback = <function> - The function of the button. | |
221 | ]] | |
222 | Tab:AddButton({ | |
223 | Name = "Anti lock (Z to enable)", | |
224 | Callback = function() | |
225 | loadstring(game:HttpGet(('https://raw.githubusercontent.com/AvianProjects/Dahood/main/AntilockerV2'),true))() | |
226 | print("Anti Executed!") | |
227 | end | |
228 | }) | |
229 | ||
230 | --[[ | |
231 | Name = <string> - The name of the button. | |
232 | Callback = <function> - The function of the button. | |
233 | ]] | |
234 | Tab:AddButton({ | |
235 | Name = "Speed", | |
236 | Callback = function() | |
237 | getgenv().Speed = true | |
238 | getgenv().FakeMacro = false | |
239 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Allvideo/nukermode/main/Kit%20tools.txt"))() | |
240 | print("Speed Executed!") | |
241 | end | |
242 | }) | |
243 | ||
244 | --[[ | |
245 | Name = <string> - The name of the button. | |
246 | Callback = <function> - The function of the button. | |
247 | ]] |