-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelper.lua
More file actions
1719 lines (1717 loc) · 76.3 KB
/
Helper.lua
File metadata and controls
1719 lines (1717 loc) · 76.3 KB
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- Thanks neox!
local v126 = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
local v127 =
v126:CreateWindow(
{
["Title"] = "NEOX HUB | FISCHv1.2",
["SubTitle"] = "by hassanxzayn",
["TabWidth"] = 588 - 428,
["Size"] = UDim2.fromOffset(580, 280 + 180),
["Acrylic"] = true,
["Theme"] = "Dark",
["MinimizeKey"] = Enum.KeyCode.LeftControl
}
)
local v128 = {
["Home"] = v127:AddTab({["Title"] = "Home", ["Icon"] = "rbxassetid://7733960981"}),
["Main"] = v127:AddTab({["Title"] = "Main", ["Icon"] = "rbxassetid://7733749837"}),
["Misc"] = v127:AddTab({["Title"] = "Misc", ["Icon"] = "rbxassetid://7733789088"}),
["Weather"] = v127:AddTab({["Title"] = "Weather", ["Icon"] = "rbxassetid://7734068495"}),
["Teleport"] = v127:AddTab({["Title"] = "Teleport", ["Icon"] = "rbxassetid://7733924216"}),
["Performance"] = v127:AddTab({["Title"] = "Performance", ["Icon"] = "rbxassetid://7733955511"}),
["Settings"] = v127:AddTab({["Title"] = "Settings", ["Icon"] = "settings"})
}
local v129 =
loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))(
)
local v130 =
loadstring(
game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua")
)()
v129:SetLibrary(v126)
v130:SetLibrary(v126)
v130:BuildInterfaceSection(v128.Settings)
v129:BuildConfigSection(v128.Settings)
v127:SelectTab(2 - 1)
v128.Home:AddButton(
{
["Title"] = "Join our discord",
["Description"] = "Click on this button to copy the invite link!",
["Callback"] = function()
local v149 = 0
local v150
while true do
if (v149 == 0) then
v150 = "https://discord.gg/25ms"
if setclipboard then
local v308 = 0
local v309
while true do
if (v308 == 0) then
v309 = 0
while true do
if (v309 == 0) then
setclipboard(v150)
print("Discord invite link copied to clipboard!")
break
end
end
break
end
end
else
print("setclipboard function not available.")
end
break
end
end
end
}
)
v128.Home:AddParagraph(
{
["Title"] = "About Our Discord",
["Content"] = "NEOX HUB, the ultimate Roblox exploit hub, now has its very own Discord server! This is your go-to place to stay updated on all the latest features, scripts, and announcements. Here’s what you can do in our server:\nStay Informed:\nGet real-time updates on the latest developments, script releases, and exploit features available in NEOX HUB.\nScript Requests:\nNeed a specific script? Submit your requests, and our team or community may create one for you.\nExclusive Giveaways:\nParticipate in exciting Robux giveaways exclusively for our Discord members.\nCommunity Interaction:\nConnect with like-minded exploit enthusiasts, share tips, and get help from a supportive community.\nMuch More:\nEnjoy sneak peeks, community events, and future features tailored for NEOX HUB users."
}
)
v128.Home:AddParagraph(
{
["Title"] = "Join us",
["Content"] = "Join us now and take your Roblox experience to the next level with NEOX HUB’s dedicated community!"
}
)
v128.Main:AddButton(
{
["Title"] = "Sell Holding Fish",
["Description"] = "Sold Fish That Is In Your Hand",
["Callback"] = function()
Workspace:WaitForChild("world"):WaitForChild("npcs"):WaitForChild("Marc Merchant"):WaitForChild(
"merchant"
):WaitForChild("sell"):InvokeServer()
end
}
)
v128.Main:AddButton(
{
["Title"] = "Sell All Fishes",
["Description"] = "Sold All Fishes That Are In You Inventory",
["Callback"] = function()
Workspace:WaitForChild("world"):WaitForChild("npcs"):WaitForChild("Marc Merchant"):WaitForChild(
"merchant"
):WaitForChild("sellall"):InvokeServer()
end
}
)
v128.Main:AddButton(
{
["Title"] = "Appraise fish",
["Description"] = "IDK",
["Callback"] = function()
Workspace:WaitForChild("world"):WaitForChild("npcs"):WaitForChild("Appraiser"):WaitForChild("appraiser"):WaitForChild(
"appraise"
):InvokeServer()
end
}
)
v128.Main:AddButton(
{
["Title"] = "AutoReel + AutoShake + AutoCast",
["Description"] = "All Combine With Better Verion",
["Callback"] = function()
local v151 =
loadstring(
game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua")
)()
local v152 =
v151:Window(
"NEOX HUB",
{
["Color"] = Color3.fromRGB(25, 11 + 24, 74 - 29),
["Size"] = UDim2.new(0, 500, 0, 1995 - (210 + 1385))
}
)
local v153 = game:GetService("Players")
local v154 = game:GetService("StarterGui")
local v155 = game:GetService("GuiService")
local v156 = game:GetService("ReplicatedStorage")
local v157 = game:GetService("VirtualInputManager")
local v158 = game:GetService("UserInputService")
local v159 = v153.LocalPlayer
local v160 = false
local v161 = nil
local v162 = false
local v163 = false
local v164
local v165 = 1689 - (1201 + 488)
local function v166(v236, v237)
v154:SetCore(
"SendNotification",
{
["Title"] = "NEOX HUB",
["Text"] = v236,
["Duration"] = v237 or (0.5),
["Button1Text"] = "Okay"
}
)
end
local function v167()
local v238 = 0
local v239
while true do
if (v238 == 0) then
v239 = 0
while true do
if (v239 == (585 - (352 + 233))) then
v160 = not v160
if v160 then
v164 = v159.Character.HumanoidRootPart.Position
v166("Auto Farm: Enabled", 2.5 - 1)
task.spawn(
function()
while v160 do
local v402 = 0
local v403
while true do
if (v402 == 0) then
v403 = 0
while true do
if (v403 == 0) then
if v161 then
local v447 = 574 - (489 + 85)
local v448
while true do
if (v447 == 0) then
v448 = 1501 - (277 + 1224)
while true do
if (v448 == (1493 - (663 + 830))) then
v161.events.shake:FireServer()
print("Shaking rod...")
break
end
end
break
end
end
end
task.wait(0.1)
break
end
end
break
end
end
end
end
)
else
local v375 = 0
while true do
if (v375 == 0) then
v163 = false
v162 = false
v375 = 1
end
if (v375 == 2) then
v166("Auto Farm: Disabled", 2.5 - 1)
break
end
if (v375 == (876 - (461 + 414))) then
v155.SelectedObject = nil
if v161 then
v161.events.reset:FireServer()
end
v375 = 1
end
end
end
break
end
end
break
end
end
end
v159.Character.ChildAdded:Connect(
function(v240)
if (v240:IsA("Tool") and v240.Name:lower():find("rod")) then
v161 = v240
end
end
)
v159.Character.ChildRemoved:Connect(
function(v241)
if (v241 == v161) then
v160 = false
v163 = false
v162 = false
v161 = nil
v155.SelectedObject = nil
end
end
)
v159.PlayerGui.DescendantAdded:Connect(
function(v242)
if v160 then
if ((v242.Name == "button") and (v242.Parent.Name == "safezone")) then
local v310 = 0
local v311
while true do
if (v310 == 0) then
v311 = 0
while true do
if (v311 == 1) then
v157:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
v157:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
v311 = 2
end
if (v311 == 2) then
task.wait(250.1 - (172 + 78))
v155.SelectedObject = nil
break
end
if ((0) == v311) then
task.wait(0.3)
v155.SelectedObject = v242
v311 = 1
end
end
break
end
end
elseif ((v242.Name == "playerbar") and (v242.Parent.Name == "bar")) then
local v337 = 0
while true do
if (v337 == 1) then
v156.events.reelfinished:FireServer(100, true)
v165 = v165 + 1
break
end
if (v337 == 0) then
v163 = true
v242:GetPropertyChangedSignal("Position"):Wait()
v337 = 1
end
end
end
end
end
)
v159.PlayerGui.DescendantRemoving:Connect(
function(v243)
if (v243.Name == "reel") then
local v275 = 0
local v276
while true do
if (v275 == 0) then
v276 = 0
while true do
if ((0) == v276) then
v163 = false
v162 = false
break
end
end
break
end
end
end
end
)
task.spawn(
function()
while true do
local v258 = 0
local v259
while true do
if (v258 == 0) then
v259 = 0
while true do
if ((0) == v259) then
if (v160 and not v162) then
if v161 then
v162 = true
task.wait(0.5)
v161.events.reset:FireServer()
v161.events.cast:FireServer(58.5 + 42)
end
end
task.wait()
break
end
end
break
end
end
end
end
)
task.spawn(
function()
while true do
local v260 = 447 - (133 + 314)
local v261
while true do
if (v260 == 0) then
v261 = 0
while true do
if (0 == v261) then
if v160 then
v159.Character.HumanoidRootPart.Position = v164
end
task.wait(0.75)
break
end
end
break
end
end
end
end
)
v152:Button(
"Enable/Disable",
function()
v167()
end
)
local v168 =
v152:Label("Auto Farm Status: OFF", Color3.fromRGB(468 - (199 + 14), 590 - 425, 1549 - (647 + 902)))
local v169 = v152:Label("Catches: 0", Color3.fromRGB(381 - 254, 376 - (85 + 148), 1455 - (426 + 863)))
task.spawn(
function()
while true do
local v262 = 0
while true do
if ((1655 - (873 + 781)) == v262) then
task.wait(1)
break
end
if (v262 == 0) then
if v160 then
v168.Text = "Auto Farm Status: ON"
else
v168.Text = "Auto Farm Status: OFF"
end
v169.Text = "Fishes Catches: " .. v165
v262 = 2 - 1
end
end
end
end
)
end
}
)
local v131 =
v128.Misc:AddToggle(
"MyToggle",
{
["Title"] = "Freeze",
["Description"] = "Freeze for Your Player",
["Default"] = false,
["Callback"] = function(v170)
local v171 = 0
local v172
while true do
if (v171 == 0) then
v172 = game:GetService("Players").LocalPlayer
if (v172 and v172.Character and v172.Character:FindFirstChild("HumanoidRootPart")) then
if v170 then
local v340 = 0
local v341
while true do
if (0 == v340) then
v341 = 0
while true do
if ((0) == v341) then
v172.Character.HumanoidRootPart.Anchored = true
print("Player is now frozen.")
break
end
end
break
end
end
else
local v342 = 0
while true do
if (v342 == 0) then
v172.Character.HumanoidRootPart.Anchored = false
print("Player is now unfrozen.")
break
end
end
end
else
warn("Player or HumanoidRootPart not found!")
end
break
end
end
end
}
)
v128.Misc:AddButton(
{["Title"] = "Anti AFK", ["Description"] = "Best For Farming", ["Callback"] = function()
loadstring(
game:HttpGet("https://raw.githubusercontent.com/hassanxzayn-lua/Anti-afk/main/antiafkbyhassanxzyn")
)()
end}
)
local v132 =
v128.Misc:AddToggle(
"UnlimitedOxygenToggle",
{
["Title"] = "Unlimited Oxygen",
["Description"] = "Prevent your character from drowning by disabling oxygen.",
["Default"] = false,
["Callback"] = function(v173)
local v174 = game.Players.LocalPlayer
local v175 = v174.Character or v174.CharacterAdded:Wait()
if v173 then
local v263 = 0
while true do
if (v263 == (1947 - (414 + 1533))) then
if (v175 and v175:FindFirstChild("client") and v175.client:FindFirstChild("oxygen")) then
local v343 = 0
local v344
while true do
if (v343 == (555 - (443 + 112))) then
v344 = v175.client.oxygen
if (v344 and v344.Enabled) then
local v409 = 1479 - (888 + 591)
local v410
while true do
if (v409 == 0) then
v410 = 0
while true do
if ((0) == v410) then
v344.Enabled = false
print("Unlimited Oxygen is ON")
break
end
end
break
end
end
end
break
end
end
end
v174.CharacterAdded:Connect(
function()
local v331 = 0
local v332
while true do
if (v331 == 0) then
v332 = 0
while true do
if (v332 == 0) then
v175 = v174.Character or v174.CharacterAdded:Wait()
if
(v175 and v175:FindFirstChild("client") and
v175.client:FindFirstChild("oxygen"))
then
local v431 = v175.client.oxygen
if (v431 and v431.Enabled) then
v431.Enabled = false
end
end
break
end
end
break
end
end
end
)
break
end
end
elseif (v175 and v175:FindFirstChild("client") and v175.client:FindFirstChild("oxygen")) then
local v291 = 0
local v292
while true do
if (v291 == 0) then
v292 = v175.client.oxygen
if (v292 and not v292.Enabled) then
local v376 = 0
while true do
if (v376 == (1678 - (136 + 1542))) then
v292.Enabled = true
print("Oxygen is now enabled.")
break
end
end
end
break
end
end
end
end
}
)
local v133 =
v128.Misc:AddToggle(
"DisableSwimmingToggle",
{
["Title"] = "Disable Swimming",
["Description"] = "Disable swimming for your character.",
["Default"] = false,
["Callback"] = function(v176)
local v177 = 0
local v178
local v179
local v180
while true do
if (v177 == (3 - 2)) then
v180 = nil
while true do
if (1 == v178) then
if (v180 and v180:FindFirstChild("Humanoid")) then
local v361 = 0
local v362
while true do
if (v361 == 0) then
v362 = v180:FindFirstChild("Humanoid")
if v362 then
if v176 then
v362:SetStateEnabled(Enum.HumanoidStateType.Swimming, false)
print("Swimming disabled.")
else
local v432 = 486 - (68 + 418)
while true do
if ((0) == v432) then
v362:SetStateEnabled(Enum.HumanoidStateType.Swimming, true)
print("Swimming enabled.")
break
end
end
end
end
break
end
end
else
warn("Humanoid not found!")
end
break
end
if ((0) == v178) then
local v333 = 0
while true do
if (v333 == (1092 - (770 + 322))) then
v179 = game.Players.LocalPlayer
v180 = v179.Character or v179.CharacterAdded:Wait()
v333 = 1
end
if (v333 == 1) then
v178 = 1
break
end
end
end
end
break
end
if (v177 == 0) then
v178 = 0
v179 = nil
v177 = 1
end
end
end
}
)
local v134 =
v128.Misc:AddToggle(
"TeleportToggle",
{
["Title"] = "T + Left Click Teleport",
["Description"] = "Enable or disable teleporting by pressing T + Left Click.",
["Default"] = false,
["Callback"] = function(v181)
local v182 = 0
while true do
if (v182 == 0) then
if (not hasUserToggled and not isTeleportEnabled) then
local v313 = 0
local v314
while true do
if (v313 == 0) then
v314 = 0
while true do
local v378 = 0
while true do
if ((0) == v378) then
if (v314 == (3 - 2)) then
return
end
if ((0) == v314) then
hasUserToggled = true
isTeleportEnabled = v181
v314 = 1
end
break
end
end
end
break
end
end
end
isTeleportEnabled = v181
v182 = 1
end
if (1 == v182) then
if v181 then
if not connection then
connection =
game:GetService("UserInputService").InputBegan:Connect(
function(v363, v364)
if
(not v364 and isTeleportEnabled and
(v363.UserInputType == Enum.UserInputType.MouseButton1))
then
if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.T) then
local v412 = 0
local v413
local v414
while true do
if (v412 == 1) then
v413.Character:MoveTo(
Vector3.new(v414.Hit.x, v414.Hit.y, v414.Hit.z)
)
break
end
if (v412 == 0) then
local v433 = 0
while true do
if ((0) == v433) then
v413 = game:GetService("Players").LocalPlayer
v414 = v413:GetMouse()
v433 = 4 - 3
end
if (v433 == (3 - 2)) then
v412 = 1
break
end
end
end
end
end
end
end
)
end
elseif connection then
local v346 = 0
while true do
if (v346 == 0) then
connection:Disconnect()
connection = nil
break
end
end
end
break
end
end
end
}
)
local v135 =
v128.Misc:AddToggle(
"InfiniteJumpToggle",
{
["Title"] = "Infinite Jumps",
["Description"] = "Enable or disable infinite jumps.",
["Default"] = false,
["Callback"] = function(v183)
_G.infinjump = v183
end
}
)
if not _G.infinJumpStarted then
local v244 = 831 - (762 + 69)
local v245
local v246
while true do
if (v244 == 0) then
_G.infinJumpStarted = true
_G.infinjump = false
v244 = 3 - 2
end
if (v244 == 1) then
v245 = game:GetService("Players").LocalPlayer
v246 = v245:GetMouse()
v244 = 2
end
if (2 == v244) then
v246.KeyDown:Connect(
function(v315)
if _G.infinjump then
if (v315:byte() == 32) then
local v379 = 0
local v380
while true do
if (v379 == 0) then
v380 = v245.Character and v245.Character:FindFirstChildOfClass("Humanoid")
if v380 then
v380:ChangeState("Jumping")
wait()
v380:ChangeState("Seated")
end
break
end
end
end
end
end
)
break
end
end
end
local v136 =
v128.Misc:AddSlider(
"SpeedSlider",
{
["Title"] = "WalkSpeed",
["Description"] = "Increase Walk Speed",
["Default"] = 38 - 22,
["Min"] = 6 + 10,
["Max"] = 500,
["Rounding"] = 1,
["Callback"] = function(v184)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v184
end
}
)
local v136 =
v128.Misc:AddSlider(
"JumpSlider",
{
["Title"] = "Jump Power",
["Description"] = "Increase Jump Power",
["Default"] = 194 - 144,
["Min"] = 207 - (8 + 149),
["Max"] = 1820 - (1199 + 121),
["Rounding"] = 1,
["Callback"] = function(v186)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = v186
end
}
)
local v137 =
v128.Weather:AddToggle(
"DayNightToggle",
{
["Title"] = "Day/Night Cycle",
["Description"] = "Enable or disable Day/Night cycle manipulation.",
["Default"] = false,
["Callback"] = function(v188)
if v188 then
if not _G.FullBrightExecuted then
_G.FullBrightEnabled = true
_G.NormalLightingSettings = {
["Brightness"] = game:GetService("Lighting").Brightness,
["ClockTime"] = game:GetService("Lighting").ClockTime,
["FogEnd"] = game:GetService("Lighting").FogEnd,
["GlobalShadows"] = game:GetService("Lighting").GlobalShadows,
["Ambient"] = game:GetService("Lighting").Ambient
}
game:GetService("Lighting"):GetPropertyChangedSignal("Brightness"):Connect(
function()
if
((game:GetService("Lighting").Brightness ~= (2 - 1)) and
(game:GetService("Lighting").Brightness ~= _G.NormalLightingSettings.Brightness))
then
local v347 = 0
local v348
while true do
if ((0) == v347) then
v348 = 0
while true do
if (v348 == 0) then
_G.NormalLightingSettings.Brightness =
game:GetService("Lighting").Brightness
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
v348 = 1
end
if (v348 == 1) then
game:GetService("Lighting").Brightness = 1
break
end
end
break
end
end
end
end
)
game:GetService("Lighting"):GetPropertyChangedSignal("ClockTime"):Connect(
function()
if
((game:GetService("Lighting").ClockTime ~= 12) and
(game:GetService("Lighting").ClockTime ~= _G.NormalLightingSettings.ClockTime))
then
local v349 = 1807 - (518 + 1289)
while true do
if (v349 == 1) then
game:GetService("Lighting").ClockTime = 2 + 10
break
end
if (v349 == 0) then
_G.NormalLightingSettings.ClockTime = game:GetService("Lighting").ClockTime
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
v349 = 1
end
end
end
end
)
game:GetService("Lighting"):GetPropertyChangedSignal("FogEnd"):Connect(
function()
if
((game:GetService("Lighting").FogEnd ~= (787012 - (304 + 165))) and
(game:GetService("Lighting").FogEnd ~= _G.NormalLightingSettings.FogEnd))
then
local v350 = 0
while true do
if (v350 == 1) then
game:GetService("Lighting").FogEnd = 786703 - (54 + 106)
break
end
if (v350 == 0) then
_G.NormalLightingSettings.FogEnd = game:GetService("Lighting").FogEnd
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
v350 = 1970 - (1618 + 351)
end
end
end
end
)
game:GetService("Lighting"):GetPropertyChangedSignal("GlobalShadows"):Connect(
function()
if
((game:GetService("Lighting").GlobalShadows ~= false) and
(game:GetService("Lighting").GlobalShadows ~=
_G.NormalLightingSettings.GlobalShadows))
then
local v351 = 0
local v352
while true do
if (v351 == 0) then
v352 = 1016 - (10 + 1006)
while true do
if (v352 == 1) then
game:GetService("Lighting").GlobalShadows = false
break
end
if (v352 == 0) then
_G.NormalLightingSettings.GlobalShadows =
game:GetService("Lighting").GlobalShadows
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
v352 = 3 - 2
end
end
break
end
end
end
end
)
game:GetService("Lighting"):GetPropertyChangedSignal("Ambient"):Connect(
function()
if
((game:GetService("Lighting").Ambient ~=
Color3.fromRGB(178, 1211 - (912 + 121), 178)) and
(game:GetService("Lighting").Ambient ~= _G.NormalLightingSettings.Ambient))
then
local v353 = 0
while true do
if (v353 == 0) then
_G.NormalLightingSettings.Ambient = game:GetService("Lighting").Ambient
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
v353 = 1290 - (1140 + 149)
end
if (v353 == 1) then
game:GetService("Lighting").Ambient = Color3.fromRGB(236 - 58, 178, 178)
break
end
end
end
end
)
game:GetService("Lighting").Brightness = 1
game:GetService("Lighting").ClockTime = 40 - 28
game:GetService("Lighting").FogEnd = 1475181 - 688638
game:GetService("Lighting").GlobalShadows = false
game:GetService("Lighting").Ambient = Color3.fromRGB(31 + 147, 178, 178)
local v299 = true
spawn(
function()
repeat
wait()
until _G.FullBrightEnabled
while wait() do
if (_G.FullBrightEnabled ~= v299) then
local v365 = 0
while true do
if (v365 == 0) then
if not _G.FullBrightEnabled then
local v426 = 0
while true do
if (v426 == (188 - (165 + 21))) then
game:GetService("Lighting").Ambient =
_G.NormalLightingSettings.Ambient
break
end
if (v426 == (112 - (61 + 50))) then
game:GetService("Lighting").FogEnd =
_G.NormalLightingSettings.FogEnd
game:GetService("Lighting").GlobalShadows =
_G.NormalLightingSettings.GlobalShadows
v426 = 1
end