Vyrxan

public
vxpreen Mar 30, 2024 Never 382
Clone
Lua paste1.lua 580 lines (486 loc) | 22.26 KB
1
-- loadstring(game:HttpGet("https://pastecode.dev/raw/aya3lbv9/paste1.lua", true))()
2
3
-- Load the updated UI library with a dark theme
4
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/NICKISBAD/Nick-s-Modded-KAVO-Lib/main/Nick'sModdedKavoLib.lua"))()
5
local Window = Library.CreateLib("Vyrxan-- TOP 3 BY JAUX, BENJI, MAX", "DarkTheme")
6
7
-- Creating the "Reach/HB" tab
8
local ReachHbTab = Window:NewTab("Reach/HB")
9
10
local Section_ReachHb = ReachHbTab:NewSection("Anti and Bypass")
11
12
Section_ReachHb:NewButton("Anti Hitbox", "yes", function()
13
local player = game.Players.LocalPlayer
14
15
local function handleCharacter()
16
if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
17
player.Character.Parent = nil
18
player.Character.HumanoidRootPart:Destroy()
19
player.Character.Parent = workspace
20
end
21
end
22
23
player.CharacterAdded:Connect(handleCharacter)
24
if player.Character then
25
handleCharacter()
26
end
27
end)
28
29
-- Creating a section in the "Reach/HB" tab
30
local Section_ReachHb = ReachHbTab:NewSection("Reach And Hitbox")
31
32
-- Adding the "Normal Reach" button with the description "Key H to hide"
33
Section_ReachHb:NewButton("Normal Reach", "Key H to hide", function()
34
-- Execute the script from the provided URL
35
loadstring(game:HttpGet("https://pastebin.com/raw/tsbVWZdP", true))()
36
end)
37
38
Section_ReachHb:NewButton("Target Reach", "Key H, U for vizualizer", function()
39
-- Execute the script from the provided URL
40
loadstring(game:HttpGet("https://pastecode.dev/raw/pknc3yh7/paste1.lua"))()
41
end)
42
43
Section_ReachHb:NewButton("Target Reach No Hits In Hole", "Key H to hide", function()
44
-- Execute the script from the provided URL
45
loadstring(game:HttpGet("https://pastecode.dev/raw/f6vmqxxx/paste1.lua"))()
46
end)
47
48
Section_ReachHb:NewButton("Smart Reach", "E,R,T,Y,G keybinds", function()
49
-- Execute the script from the provided URL
50
loadstring(game:HttpGet("https://pastecode.dev/raw/097mhdsc/paste1.txt"))()
51
end)
52
53
-- Adding the "Hitbox Expander" button with the description "Untitled :)"
54
Section_ReachHb:NewButton("Hitbox Expander", "Untitled :)", function()
55
-- Execute the script from the provided URL
56
loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/main/HitboxExpander.lua"))()
57
end)
58
59
-- Adding the "Woot/Reach (Not KillAura)" button with the description "X to toggle :)"
60
Section_ReachHb:NewButton("Woot/Reach (Not KillAura)", "X to toggle :)", function()
61
-- Execute the script from the provided URL
62
loadstring(game:HttpGet("https://pastebin.com/raw/v85uKg67", true))()
63
end)
64
65
Section_ReachHb:NewButton("Kill Aura?", "J to turn off, K for visualizer, no gui sorry", function()
66
-- Execute the script from the provided URL
67
loadstring(game:HttpGet("https://pastecode.dev/raw/pvf6cshi/paste1.txt", true))()
68
end)
69
70
-- Creating the "Auto Use Tools" tab
71
local AutoUseToolsTab = Window:NewTab("AutoUseTools")
72
73
-- Creating a section in the "Auto Use Tools" tab
74
local Section_AutoUseTools = AutoUseToolsTab:NewSection("Must Have Tools")
75
76
-- Adding a toggle button titled "Auto Heal" with the description "Switches to Heal then sword. (Ruby Users Bypass)"
77
local toggle_AutoHeal = Section_AutoUseTools:NewToggle("Auto Heal", "Switches to Heal then sword. (Ruby Users Bypass)", function(state)
78
if state then
79
local toolName = "Heal"
80
local maxHealth = 100
81
local healthThreshold = 19.999
82
83
local player = game.Players.LocalPlayer
84
local backpack = player.Backpack
85
86
local function equipAndUseHealTool()
87
local tool = backpack:FindFirstChild(toolName)
88
if tool then
89
player.Character.Humanoid:EquipTool(tool)
90
wait()
91
tool:Activate()
92
93
-- Delay for a short period to allow the healing to finish
94
wait(0.0000001)
95
96
-- Check if the player is still holding the tool after healing
97
if player.Character:FindFirstChild(toolName) then
98
local sword = backpack:FindFirstChild("Sword")
99
if sword then
100
player.Character.Humanoid:EquipTool(sword)
101
end
102
end
103
end
104
end
105
106
local function onCharacterAdded(character)
107
character.Humanoid.HealthChanged:Connect(function(health)
108
if health <= healthThreshold and health > 0 then
109
equipAndUseHealTool()
110
end
111
end)
112
end
113
114
player.CharacterAdded:Connect(onCharacterAdded)
115
116
if player.Character then
117
onCharacterAdded(player.Character)
118
end
119
else
120
-- Do something when the toggle is turned off, if needed
121
end
122
end)
123
124
Section_AutoUseTools:NewButton("Perm Auto Heal", "perm so rj to turn off", function()
125
-- Execute the script from the provided URL
126
loadstring(game:HttpGet("https://pastecode.dev/raw/ukdzmmg0/paste1.txt"))()
127
end)
128
129
-- Adding the "Auto Use Speed + HighJump" button with the description "Untitled :)"
130
Section_AutoUseTools:NewButton("Auto Use Speed + HighJump", "Untitled :)", function()
131
-- Execute the script for auto using Speed and HighJump tools
132
local player = game.Players.LocalPlayer
133
local backpack = player.Backpack
134
135
local function useTool(tool)
136
if tool then
137
player.Character.Humanoid:EquipTool(tool)
138
wait() -- Adjust delay as needed
139
tool:Activate()
140
end
141
end
142
143
local speedTool = backpack:FindFirstChild("Speed")
144
local highJumpTool = backpack:FindFirstChild("HighJump")
145
146
if speedTool and highJumpTool then
147
useTool(speedTool)
148
wait() -- Adjust delay between tool usage
149
useTool(highJumpTool)
150
elseif speedTool then
151
useTool(speedTool)
152
elseif highJumpTool then
153
useTool(highJumpTool)
154
end
155
end)
156
157
-- Adding the "Auto Use Speed + HighJump + Shield" button with the description "Untitled :)"
158
Section_AutoUseTools:NewButton("Auto Use Speed + HighJump + Shield", "Untitled :)", function()
159
-- Execute the script for auto using Speed, HighJump, and Shield tools
160
local player = game.Players.LocalPlayer
161
local backpack = player.Backpack
162
163
local function useTool(tool)
164
if tool then
165
player.Character.Humanoid:EquipTool(tool)
166
wait() -- Adjust delay as needed
167
tool:Activate()
168
end
169
end
170
171
local speedTool = backpack:FindFirstChild("Speed")
172
local highJumpTool = backpack:FindFirstChild("HighJump")
173
local shieldTool = backpack:FindFirstChild("Shield")
174
175
if speedTool and highJumpTool and shieldTool then
176
useTool(speedTool)
177
wait() -- Adjust delay between tool usage
178
useTool(highJumpTool)
179
wait() -- Adjust delay between tool usage
180
useTool(shieldTool)
181
elseif speedTool and highJumpTool then
182
useTool(speedTool)
183
wait() -- Adjust delay between tool usage
184
useTool(highJumpTool)
185
elseif speedTool and shieldTool then
186
useTool(speedTool)
187
wait() -- Adjust delay between tool usage
188
useTool(shieldTool)
189
elseif highJumpTool and shieldTool then
190
useTool(highJumpTool)
191
wait() -- Adjust delay between tool usage
192
useTool(shieldTool)
193
elseif speedTool then
194
useTool(speedTool)
195
elseif highJumpTool then
196
useTool(highJumpTool)
197
elseif shieldTool then
198
useTool(shieldTool)
199
end
200
end)
201
202
-- Creating the "Other Hubs" tab
203
local OtherHubsTab = Window:NewTab("Other Hubs")
204
205
-- Creating a section in the "Other Hubs" tab
206
local Section_OtherHubs = OtherHubsTab:NewSection("Section 1")
207
208
-- Adding the "PizzaSkyHub V2 (inspired hub)" button with the description "Untitled :)"
209
Section_OtherHubs:NewButton("PizzaSkyHub V2 (inspired hub)", "Untitled :)", function()
210
-- Execute the script from the provided URL
211
loadstring(game:HttpGet("https://pastecode.dev/raw/1szHPM6god/sleep.lol", true))()
212
end)
213
214
local ScriptsTab = Window:NewTab("Scripts")
215
216
-- Creating a section in the "Scripts" tab
217
local Section_Scripts = ScriptsTab:NewSection("Section 1")
218
219
Section_Scripts:NewButton("PlayerLock", "Untitled :)", function()
220
-- Execute the script from the provided URL
221
loadstring(game:HttpGet("https://pastecode.dev/raw/o20j138q/paste1.txt"))()
222
end)
223
224
Section_Scripts:NewButton("Infinite Yield", "Untitled :)", function()
225
-- Execute the script from the provided URL
226
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
227
end)
228
229
Section_Scripts:NewButton("Mobile Keyboard", "Untitled :)", function()
230
-- Execute the script from the provided URL
231
loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
232
end)
233
234
Section_Scripts:NewButton("DEX", "Untitled :)", function()
235
-- Execute the script from the provided URL
236
loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Universal/BypassedDarkDexV3.lua", true))()
237
end)
238
239
Section_Scripts:NewButton("Vape V4", "Untitled :)", function()
240
-- Execute the script from the provided URL
241
loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
242
end)
243
244
Section_Scripts:NewButton("Trash Talk", "Classic Chat Only :)", function()
245
-- Execute the script from the provided URL
246
loadstring(game:HttpGet("https://pastecode.dev/raw/a09y90yz/paste1.txt"))()
247
end)
248
249
Section_Scripts:NewButton("Auto + Reach", "yGUI :)", function()
250
-- Execute the script from the provided URL
251
loadstring(game:HttpGet("https://gist.githubusercontent.com/ayayy/4d529b721e7d6934ff16356a6e71b4ba/raw"))()
252
end)
253
254
Section_Scripts:NewButton("TouchFling", "yGUI :)", function()
255
-- Execute the script from the provided URL
256
loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
257
end)
258
259
Section_Scripts:NewButton("Chat Translate", ">(landuage) to letters ex: >es >en >fr", function()
260
-- Execute the script from the provided URL
261
loadstring(game:HttpGetAsync('https://i.qts.life/r/ChatInlineTranslator.lua', true))()
262
end)
263
264
Section_Scripts:NewButton("AntiLag", "FPSBOOSTER", function()
265
-- Execute the script from the provided URL
266
_G.Settings = {
267
Players = {
268
["Ignore Me"] = true, -- Ignore your Character
269
["Ignore Others"] = true -- Ignore other Characters
270
},
271
Meshes = {
272
Destroy = false, -- Destroy Meshes
273
LowDetail = true -- Low detail meshes (NOT SURE IT DOES ANYTHING)
274
},
275
Images = {
276
Invisible = true, -- Invisible Images
277
LowDetail = false, -- Low detail images (NOT SURE IT DOES ANYTHING)
278
Destroy = false, -- Destroy Images
279
},
280
Other = {
281
["No Particles"] = true, -- Disables all ParticleEmitter, Trail, Smoke, Fire and Sparkles
282
["No Camera Effects"] = true, -- Disables all PostEffect's (Camera/Lighting Effects)
283
["No Explosions"] = true, -- Makes Explosion's invisible
284
["No Clothes"] = true, -- Removes Clothing from the game
285
["Low Water Graphics"] = true, -- Removes Water Quality
286
["No Shadows"] = true, -- Remove Shadows
287
["Low Rendering"] = true, -- Lower Rendering
288
["Low Quality Parts"] = true -- Lower quality parts
289
}
290
}
291
loadstring(game:HttpGet("https://raw.githubusercontent.com/CasperFlyModz/discord.gg-rips/main/FPSBooster.lua"))()
292
end)
293
294
Section_Scripts:NewButton("Zoom 25", "Sets Maxzoom and MinZoom to 25", function()
295
-- Execute the script from the provided URL
296
local player = game.Players.LocalPlayer
297
local zoomMin = 25
298
local zoomMax = 25
299
player.CameraMinZoomDistance = zoomMin
300
player.CameraMaxZoomDistance = zoomMax
301
end)
302
303
Section_Scripts:NewButton("No Cool Down", "gives you no error of autoclicker", function()
304
g = hookfunction(wait, function(seconds)
305
return g(0)
306
end)
307
end)
308
309
local toggle_Scripts = Section_Scripts:NewToggle("Anti Fling", "Cant Get Flung", function(value)
310
if value then
311
-- Connect the antifling event
312
antifling = RunService.Stepped:Connect(function()
313
for _, player in pairs(Players:GetPlayers()) do
314
if player ~= speaker and player.Character then
315
for _, v in pairs(player.Character:GetDescendants()) do
316
if v:IsA("BasePart") then
317
v.CanCollide = false
318
end
319
end
320
end
321
end
322
end)
323
else
324
-- Disconnect the antifling event
325
if antifling then
326
antifling:Disconnect()
327
antifling = nil
328
end
329
end
330
end)
331
332
-- Creating a new tab for "SkyPractice"
333
local SkyPracticeTab = Window:NewTab("SkyPractice")
334
335
-- Creating a section in the "SkyPractice" tab
336
local Section_SkyPractice = SkyPracticeTab:NewSection("Auto Tool Permanent")
337
338
Section_SkyPractice:NewButton("Auto Heal Galaxy", "Heals when low", function()
339
-- Execute the script from the provided URL
340
loadstring(game:HttpGet("https://pastecode.dev/raw/y4w3sowg/paste1.txt"))()
341
end)
342
343
Section_SkyPractice:NewButton("Auto Heal Xmas", "Heals when low", function()
344
-- Execute the script from the provided URL
345
loadstring(game:HttpGet("https://pastecode.dev/raw/7xs18bxw/paste1.txt"))()
346
end)
347
348
Section_SkyPractice:NewButton("Auto Heal Frost", "Heals when low", function()
349
-- Execute the script from the provided URL
350
loadstring(game:HttpGet("https://pastecode.dev/raw/magpwff1/paste1.txt"))()
351
end)
352
353
Section_SkyPractice:NewButton("Auto Heal Obsidian", "Heals when low", function()
354
-- Execute the script from the provided URL
355
loadstring(game:HttpGet("https://pastecode.dev/raw/a1xy5isl/paste1.lua"))()
356
end)
357
358
local Section_SkyPractice = SkyPracticeTab:NewSection("Auto Buy")
359
360
Section_SkyPractice:NewButton("Auto Buy Heal", "buys heal when respawn", function()
361
local player = game.Players.LocalPlayer
362
local characterAddedConnection
363
364
local function simulateTouch()
365
local character = player.Character or player.CharacterAdded:Wait()
366
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
367
local buttonPart = workspace.Lobby.ToolButtons.Health.Swordd
368
369
firetouchinterest(humanoidRootPart, buttonPart, 0)
370
wait(0.1)
371
firetouchinterest(humanoidRootPart, buttonPart, 1)
372
end
373
374
simulateTouch()
375
376
characterAddedConnection = player.CharacterAdded:Connect(function()
377
wait(1)
378
simulateTouch()
379
end)
380
end)
381
382
383
local Section_SkyPractice = SkyPracticeTab:NewSection("Bypass")
384
385
386
Section_SkyPractice:NewButton("Bypass Hitbox (coming soon)", "Untitled :)", function()
387
-- Execute the script from the provided URL
388
print("coming soon")
389
end)
390
391
local Section_SkyPractice = SkyPracticeTab:NewSection("TP")
392
393
394
Section_SkyPractice:NewButton("TP to Middle Teleporter", "Untitled :)", function()
395
-- Execute the script from the provided URL
396
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-45.6115875, 7064.99902, 374.104095, 0.999419749, 0, -0.0340613835, -0, 1, -0, 0.0340613835, 0, 0.999419749) wait()
397
end)
398
399
Section_SkyPractice:NewButton("TP to Random Island Teleporter", "Untitled :)", function()
400
-- Execute the script from the provided URL
401
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-53.2880898, 7064.99854, 373.53894, 0.958923221, 9.20724688e-08, -0.283665687, -8.88727527e-08, 1, 2.41492959e-08, 0.283665687, 2.05282902e-09, 0.958923221) wait()
402
end)
403
404
Section_SkyPractice:NewButton("TP to NoTreeIsland Teleporter", "Untitled :)", function()
405
-- Execute the script from the provided URL
406
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-38.3277321, 7064.99854, 373.191742, 0.963814318, -5.76896362e-08, -0.266574472, 4.31839062e-08, 1, -6.02772303e-08, 0.266574472, 4.65843293e-08, 0.963814318) wait()
407
end)
408
409
local toggle_Teleport = Section_SkyPractice:NewToggle("TP to Middle Teleporter", "Untitled :)", function(state)
410
local player = game.Players.LocalPlayer
411
local teleportConnection
412
413
local function waitForCharacter()
414
local character = player.Character
415
if not character then
416
character = player.CharacterAdded:Wait()
417
end
418
-- Wait for HumanoidRootPart to be present in the character
419
local humanoidRootPart = character:WaitForChild("HumanoidRootPart", 10) -- Wait up to 10 seconds
420
return humanoidRootPart
421
end
422
423
local function teleport()
424
local humanoidRootPart = waitForCharacter()
425
if humanoidRootPart then
426
humanoidRootPart.CFrame = CFrame.new(-45.6115875, 7064.99902, 374.104095, 0.999419749, 0, -0.0340613835, -0, 1, -0, 0.0340613835, 0, 0.999419749)
427
else
428
warn("HumanoidRootPart not found within the timeout period.")
429
end
430
end
431
432
if state then
433
teleport()
434
teleportConnection = player.CharacterAdded:Connect(function()
435
wait()
436
teleport()
437
end)
438
else
439
if teleportConnection then
440
teleportConnection:Disconnect()
441
teleportConnection = nil
442
end
443
end
444
end)
445
446
447
local toggle_Teleport = Section_SkyPractice:NewToggle("TP to NoTreeIsland Teleporter", "Untitled :)", function(state)
448
local player = game.Players.LocalPlayer
449
local teleportConnection
450
451
local function waitForCharacter()
452
local character = player.Character
453
if not character then
454
character = player.CharacterAdded:Wait()
455
end
456
-- Wait for HumanoidRootPart to be present in the character
457
local humanoidRootPart = character:WaitForChild("HumanoidRootPart", 10) -- Wait up to 10 seconds
458
return humanoidRootPart
459
end
460
461
local function teleport()
462
local humanoidRootPart = waitForCharacter()
463
if humanoidRootPart then
464
humanoidRootPart.CFrame = CFrame.new(-38.3277321, 7064.99854, 373.191742, 0.963814318, -5.76896362e-08, -0.266574472, 4.31839062e-08, 1, -6.02772303e-08, 0.266574472, 4.65843293e-08, 0.963814318)
465
else
466
warn("HumanoidRootPart not found within the timeout period.")
467
end
468
end
469
470
if state then
471
teleport()
472
teleportConnection = player.CharacterAdded:Connect(function()
473
wait()
474
teleport()
475
end)
476
else
477
if teleportConnection then
478
teleportConnection:Disconnect()
479
teleportConnection = nil
480
end
481
end
482
end)
483
484
local toggle_Teleport = Section_SkyPractice:NewToggle("AutoFarmKillTest", "Untitled :)", function(state)
485
local player = game.Players.LocalPlayer
486
local teleportConnection
487
488
local function waitForCharacter()
489
local character = player.Character
490
if not character then
491
character = player.CharacterAdded:Wait()
492
end
493
-- Wait for HumanoidRootPart to be present in the character
494
local humanoidRootPart = character:WaitForChild("HumanoidRootPart", 10) -- Wait up to 10 seconds
495
return humanoidRootPart
496
end
497
498
local function teleport()
499
local humanoidRootPart = waitForCharacter()
500
if humanoidRootPart then
501
humanoidRootPart.CFrame = CFrame.new(-45.6115875, 7064.99902, 374.104095, 0.999419749, 0, -0.0340613835, -0, 1, -0, 0.0340613835, 0, 0.999419749)
502
wait(0.4)
503
humanoidRootPart.CFrame = CFrame.new(29.1630993, 14.9613962, 22.3721161, 0.0741266236, -2.74666223e-09, -0.997248828, 1.51878101e-08, 1, -1.62531255e-09, 0.997248828, -1.5025547e-08, 0.0741266236)
504
else
505
warn("HumanoidRootPart not found within the timeout period.")
506
end
507
end
508
509
if state then
510
teleport()
511
teleportConnection = player.CharacterAdded:Connect(function()
512
wait()
513
teleport()
514
end)
515
else
516
if teleportConnection then
517
teleportConnection:Disconnect()
518
teleportConnection = nil
519
end
520
end
521
end)
522
523
local toggle_Teleport = Section_SkyPractice:NewToggle("AUTODFARMKKILLLOOL2", "Untitled :)", function(state)
524
local player = game.Players.LocalPlayer
525
local teleportConnection
526
527
local function waitForCharacter()
528
local character = player.Character
529
if not character then
530
character = player.CharacterAdded:Wait()
531
end
532
-- Wait for HumanoidRootPart to be present in the character
533
local humanoidRootPart = character:WaitForChild("HumanoidRootPart", 10) -- Wait up to 10 seconds
534
return humanoidRootPart
535
end
536
537
local function equipTool()
538
local backpack = player:WaitForChild("Backpack")
539
local tool = backpack:FindFirstChild("Xmas?")
540
if tool then
541
tool.Parent = player.Character
542
else
543
warn("Tool 'Xmas?' not found in backpack.")
544
end
545
end
546
547
local function teleport()
548
local humanoidRootPart = waitForCharacter()
549
if humanoidRootPart then
550
humanoidRootPart.CFrame = CFrame.new(-38.3277321, 7064.99854, 373.191742, 0.963814318, -5.76896362e-08, -0.266574472, 4.31839062e-08, 1, -6.02772303e-08, 0.266574472, 4.65843293e-08, 0.963814318)
551
wait(0.4)
552
humanoidRootPart.CFrame = CFrame.new(135.717834, 14.9613628, 22.5702648, 0.9362396, -4.74032404e-08, 0.351362258, 6.70158187e-08, 1, -4.36575647e-08, -0.351362258, 6.44207674e-08, 0.9362396)
553
equipTool()
554
else
555
warn("HumanoidRootPart not found within the timeout period.")
556
end
557
end
558
559
if state then
560
teleport()
561
teleportConnection = player.CharacterAdded:Connect(function()
562
wait()
563
teleport()
564
end)
565
else
566
if teleportConnection then
567
teleportConnection:Disconnect()
568
teleportConnection = nil
569
end
570
end
571
end)
572
573
574
local KeyBindTab = Window:NewTab("KeyBind")
575
576
local Section_KeyBind = KeyBindTab:NewSection("KeyBind")
577
578
Section_KeyBind:NewKeybind("KeyBind (any key)", "Click or Tap F to change keybind", Enum.KeyCode.F, function()
579
Library:ToggleUI()
580
end)