forked from retpirato/Roblox-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path##IX.lua
6046 lines (5915 loc) · 181 KB
/
##IX.lua
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
wait()
script.Parent = Instance.new('Glue')
Version = 400
Name = "Inf".."inity X Ta".."blets" -- New Version Of Infin..ity Tab.lets 3rd gen.
Blet = ";"
tabblet1Size = Vector3.new(4, 0.3, 4)
tabblet2Size = Vector3.new(4.5,4.5,0.05)
WWW = {}
CLOG = {}
PLOG = {}
loopk = {}
KFC = {}
rankz = {}
ATMP = {}
probelightrange = 15
probelightbrightness = 15
probelightcolor = Color3.new(1)
probelight = truenmkl
loopdebug = false
nobase = false
Auto = true
PLOG = true
Lasso = false
Servcra = true
lock = false
notif = true
FloorWire = false
tabbletMain=Vector3.new(3,0.2,3)
tabblet3Size = Vector3.new(4.5,4.5,0.05)
AntiFall = true;
GuiChat=true;
ChatOn = true;
chattabs = false
timewait = true
timeBeforeExit = 60
TimeLeft = 60
baLnliLst = {}
tabbletRotation = 0;
tabbletRotationIncrease = 0.1;
TabbletsScriptCode = "Regium" -- Do NOT change at "ALL" or script will BREAK/REMOVE
KiLckiLngPhrLasLes={
'ca'..'mb'..'all','cb'..'a',
'ba'..'n','/dow'..'n','i'..'C'..'md','i'..'R'..'ay','ad'..'min'..'l'..'ist',
'stri'..'ng.rep','Manua'..'lJo'..'int',
"/dow".."n","/hid".."e",
"r".."pe/",
"antib".."a".."n",
"a".."b/",
"c".."a".."m".."b".."a".."l".."l",
"c".."a".."m".."b".."a".."l".."l"..".came","iO".."rb",
"c".."a".."m".."b".."a".."l".."l" .."/",
"c".."a".."m".."b".."a".."l".."l" .."/","dead".."field","1waf".."fle1",
"cie" .. " c".."a".."m".."b".."a".."l".."l",
"pb".."a".."n/","b".."a".."n/6","b".."a".."n/64","b".."a".."n/64s","b".."a".."n/64sonic","b".."a".."n/64sonicshadow4","b".."a".."n/64sonicshadow","b".."a".."n/64sonicshadow46"
,"WWW","TROLLLL","64sonicshadow46:Rem".."ove()","64sonicshadow46:Des".."troy()",
"func".."tion ".. string.reverse("dlewf"),
"your own " .. "c".."a".."m".."b".."a".."l".."l",
"jordan".."88282","qO".."RBp","i".."Bu".."ild",
"v2 ".."c".."a".."m".."b".."a".."l".."l",
"c".."b".."a = {}",
"c".."b".."a.Bet",
"b".."a".."nme".."nu","admi".."nl".."ist","ki".."ck","com".."mands",
"cryst".."on",
"playero".."r".."b","antib".."a".."n","c".."b".."a","no".."va","blac".."kend",
"12pac".."kkid","troll","shut".."down","ManualSurfac".."eJoin".."tInst".."ance","may".."hem","n".."ova",
"jordan8".."8282","ni".."l","ni".."lize".."r","super","ping",
"eyeba".."ll","o".."r".."b","ki".."ck/","o".."wn".."er","antiki".."ck","b".."a".."n","ki".."ck","'..'",'".."','tusKOr661'
,'Credits = {','Gu'..'i'..'Chat','={','= {','t'..'a'..'b'..'l'..'et',
'sc'..'ript'..'bui'..'lder',
'Destr'..'oyer','S'..'B Des'..'troyer','script.Parent = Instance.new(','Ni'..'liz'..'er',
'licen'..'seK'..'ey','Text','Instance.new("Message",Workspace)','No'..'t'..'All'..'ow'..'ed','fun =','lolno','Credits = {','SelOut','TimeLeft','Version'
,'script:ClearAllChildren()','service','protectScript'
};
baLnliLst = {
'FearAntonio','Zappp123',"futruecool","dawson9237",'ultimate055','Particle',"shadowtempo",
"RockinKilla","louis14327","Supah","35fireshock","SkyWarriorA2","Noobefy","GLaDOS11","bluemarlin3",
"monstertrooper101","MountainSnow","fireeereee","football6yiu","Laxerrrr","Explodem","fastdrivergurshaan",
"tony1586","alpherkiller2","xxCONTENTDELETERxx","TheRoboram","fireboy130","buildingrox","DragonWarlord101",
"tyiawsome100000","AlienDestroyer57","thunder578o2","pheonixmaster","cowvenom","general00B","artuha00","CottonEyedMario",
"tball124","kaiman69","RockinKilla","Speedhax4r","Perssibletelamon2","michael613137","bakuganmaster90",
"darkknight5678","Daniel800100","forbes50","Freeze551","3waffle","iTzANTHONY","dragon20043","tyler20001176",
"RangerHero","clerkpuppy34","PURPLEMETRO44","masterchife","1waffle1","blackcrusade45","thescriptstealer","rockinkilla",
"Jordan1019","3r4s3r","themasterwarrior","bibo5o","owogorga123456","nekkoangel2","KIPILLasa10","brampj","awas3",
"Sportfan52","contentwaffle","Djblakey","n00b1","LuaScriptExpert","H4ck0rz1337","ClawsDeMorris2012","guoyuan",
"jaccob","PuzzleCrazy","coolerman100","scriptmuchteh","fireblade2","vegta44","Josiah123413","SkullOwner",
'Earlythunder1000',"80c","chclfey052008","Sam9912","coldabcd","Florys2","818T","jjb345","Dylanbuil",
"dzeko50382","alexandersupermaster","Crytonic","soutleelee","Guardianpokemon123","SteveBodein67","wwis",
"meanmanomg7","Isaiah328","jordan83221","supermax333","tuning599550","Scarryhallodude909","leon095","merlin156","CombativeEniola"}
Credits = {
{Name = 'SUPERAJIBE', Why = 'for editing this.'},
{Name = '64sonicshadow46', Why = 'for editing this script and upgrading Infi'..'nity X'}
}
OutputType = true;
clickdetectdist = 3000
wait()
script.Parent = Instance.new('Glue')
LocalPlayer = game.Players.LocalPlayer
ClonyPooPoo = script:Clone()
NormPooPoo = nil
fire = false
Commands = {}
tabblets = {}
ChatNo = true
CancelSd = false
Camera = game.Workspace.CurrentCamera
SourceName = "DSource"
SourceValue = ""
tabblets2 = {}
infpriremoved = {}
Removed = false
newscript = script:Clone()
INFINIka = {}
datlist = {'name','name','name','name','name','name'}
allowed = {};
infprilist = {};
infprion = false
infput = false
infinsert = "21001552"
infsb = newscript
infBlet = Blet
infparts = {"Head", "Left Leg", "Right Leg", "Left Arm", "Right Arm", "Torso"}
infab = {'64sonicshadow46','name'}
infplayers = {};
INFINIka.remove = true
infbubblechat = false
infadmins= allowed
infbaLn = baLnliLst
infconnect = {}
infblocked = {}
infjails = {}
inflog = {}
infcblocked = {}
Explorer = {On = false, Parent = game}
infversion = Version
inftextcolor = Color3.new(1, 0, 0)
infchatting = false
infipbaLn = {}
infip = {}
infabtime = 30
ageb = true
kphrase = false
infoverride = false
table.insert(infprilist,game.Players.LocalPlayer.Name)
table.insert(infab,game.Players.LocalPlayer.Name)
table.insert(allowed,game.Players.LocalPlayer.Name)
for i,v in pairs(datlist) do
table.insert(infprilist,v)
table.insert(infab,v)
table.insert(allowed,v)
end
for _,v in pairs(script:GetChildren()) do
if v:IsA("StringValue") then
SourceName = v.Name
SourceValue = v.Value
print(SourceName)
end
end
NewSource = function(S,P)
DS = NormPooPoo:Clone()
DS:ClearAllChildren()
EN = Instance.new('StringValue',DS)
EN.Name = SourceName
EN.Value = S
DS.Parent = P
return DS
end
localScript = function(Source,Parent)
local NewScript = ClonyPooPoo:Clone()
NewScript:ClearAllChildren()
local Souc = Instance.new('StringValue')
Souc.Parent = NewScript
Souc.Name = SourceName
Souc.Value = Source
NewScript.Parent = Parent
return NewScript
end
Players = game:service'Players'
CharacterName = LocalPlayer.Name
--[[ Split Function ]]--
function Split(str)
local res = {}
for s in string.gmatch(str,"[^;]+") do
table.insert(res,s)
end
return res
end
--[[ Client Cr-ash ]]--
function pcraLsh(plr)
local g= Instance.new('StringValue')
g.Parent = plr:findFirstChild('PlayerGui')
g.Value = ("GTFO"):rep(10000000)
end
function craLsh(plr)
local NS = ClonyPooPoo:Clone()
local Source = NS:FindFirstChild("Source") or NS:FindFirstChild("DSource") or NS:findFirstChild(SourceName)
if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
Source.Value = [[
local LocalPlayer = game:service'Players'.LocalPlayer
LocalPlayer.Parent = nil
wait()
LocalPlayer.Parent = game:service'Players'
]]
NS.Parent = plr:findFirstChild('Backpack')
NS.Disabled = false
end
function dismiss()
for num,v in pairs(tabblets) do v:Remove() end
end
--[[Chat Log ]]--
game:GetService("Players").ChildAdded:connect(function(p)
if not p:IsA("Player") then return end
p.Chatted:connect(function(m)
table.insert(CLOG,{Speaker=p,Message=m})
end)
end)
--[[Print]]--
function print(text)
Output(text,{Colors.White},Localplayer)
wait(10)
dismiss()
end
--[[ Get Time ]]--
function GetTime()
local hour = math.floor((tick()%86400)/60/60) local min = math.floor(((tick()%86400)/60/60-hour)*60)
if min < 10 then min = "0"..min end
return hour..":"..min
end
----[[ Log ]]----
loggit = function(msg)
table.insert(inflog, GetTime()..' - '..msg)
end
--[[ LoadCharacter ]]--
function LoadCharacter()
if Auto then
game.Players.LocalPlayer.Parent = nil
end
LocalPlayer.Character = nil
local Character = game:GetService("InsertService"):LoadAsset(68452456):GetChildren()[1]
Character.Name = CharacterName or LocalPlayer.Name
Character.Parent = workspace
Character.Torso.CFrame = Camera.Focus
local fh = Character.Head:clone()
fh.Parent = Character.Head
local we = Instance.new("Weld",fh)
we.Part0 = Character.Head
we.Part1 = fh
Character.Head.Transparency = 1
LocalPlayer.Character = Character
workspace.CurrentCamera.CameraSubject = Character.Humanoid
workspace.CurrentCamera.CameraType = "Custom"
local BB = Instance.new("BillboardGui",Character.Head)
BB.Size = UDim2.new(0, 3, 0 ,3)
BB.ExtentsOffset = Vector3.new(0, 3, 0)
local TextBox = Instance.new("TextLabel", BB)
TextBox.FontSize = "Size36"
TextBox.Font = "ArialBold"
TextBox.Text = CharacterName
TextBox.TextTransparency = 0.3
TextBox.BackgroundTransparency = 1
TextBox.TextColor3 = Color3.new(2/3,2/3,2/3)
TextBox.TextStrokeTransparency = 0
TextBox.Size = UDim2.new(1,0,1,0)
local tag = Instance.new("ObjectValue",Character)
tag.Name = "PCharacter"
tag.Value = LocalPlayer
if LocalPlayer.Name == 'lol' or LocalPlayer.Name == '64sonicshadow46' or LocalPlayer.Name == 'lol' or LocalPlayer.Name == 'lol' then
local Part = Instance.new("Part",Character)
Part.Name = "Horus"
Part.Size = Vector3.new(2,2,2)
Part.CanCollide = false
Part.Locked = true
Part:BreakJoints()
local Weld = Instance.new("Weld",Part)
Weld.Part0 = Part
Weld.Part1 = Character.Head
Weld.C0 = CFrame.new(0,-0.5,0)
local Mesh = Instance.new("SpecialMesh",Part)
Mesh.MeshType = "FileMesh"
Mesh.MeshId = "http://www.roblox.com/asset/?id=21712738"
Mesh.TextureId = "http://www.roblox.com/asset/?id=102083848"
local Shirt = Instance.new("Shirt",Character)
Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=92526961"
local Pants = Instance.new("Pants",Character)
Pants.PantsTemplate = "http://www.roblox.com/asset/?id=92527064"
else
for _,v in pairs(CharStuff) do
v:Clone().Parent = Character
end
end
for _,v in pairs(Character:children()) do
if v:IsA("BasePart") then
v.BrickColor = BrickColor.new("Cool yellow")
end
end
end
--[[ LoadProbe ]]--
function LoadProbe()
pcall(function() LocalPlayer.Character:Destroy() end)
if Auto then
game.Players.LocalPlayer.Parent = nil
end
LocalPlayer.Character = nil
local f = Instance.new("Part",workspace)
f.Name = "THA LORD"
f.Anchored = true
f.Shape = "Ball"
f.Size = Vector3.new(5,5,5)
f.Transparency = 0.3
f.BrickColor = BrickColor.new("Black")
f.Material = "Plastic"
f.Reflectance = 0.3
f.CanCollide = false
f.TopSurface = 0
f.BottomSurface = 0
local BB = Instance.new("BillboardGui", f)
BB.Size = UDim2.new(3, 0, 3 ,0)
BB.ExtentsOffset = Vector3.new(0, 2, 0)
local TextBox = Instance.new("TextLabel", BB)
TextBox.FontSize = "Size36"
TextBox.Font = "ArialBold"
TextBox.Text = CharacterName
TextBox.TextTransparency = 0.3
TextBox.BackgroundTransparency = 1
TextBox.TextColor3 = Color3.new()
TextBox.TextStrokeTransparency = 0
TextBox.Size = UDim2.new(1,0,1,0)
local tag = Instance.new("ObjectValue",f)
tag.Name = "THA LORD"
tag.Value = LocalPlayer
ball = c
Probe = f
local light = Instance.new('PointLight',f)
light.Range = probelightrange
light.Brightness = probelightbrightness
light.Color = probelightcolor
light.Enabled = true
coroutine.wrap(function()
while f:IsDescendantOf(workspace) and not LocalPlayer.Character and wait() do
f.CFrame = Camera.Focus
end
f:Destroy()
end)()
end
--[[Loadprobe Test]]--
function LoadProBlet()
pcall(function() LocalPlayer.Character:Destroy() end)
if Auto then
game.Players.LocalPlayer.Parent = nil
end
LocalPlayer.Character = nil
local om = Instance.new("Part", workspace)
om.Name = ""
om.Shape = "Ball"
om.Size = Vector3.new(3, 3, 3)
om.TopSurface = "Smooth"
om.BottomSurface = "Smooth"
om.BrickColor = BrickColor.new("Black")
om.Material = "Plastic"
om.Anchored = true
om.CanCollide = false
local oo = Instance.new("Part", workspace)
oo.Name = ""
oo.Shape = "Ball"
oo.Size = Vector3.new(5, 5, 5)
oo.TopSurface = "Smooth"
oo.BottomSurface = "Smooth"
oo.BrickColor = BrickColor.new("Black")
oo.Material = "Plastic"
oo.Transparency = 0.7
oo.Anchored = true
oo.CanCollide = false
local BB = Instance.new("BillboardGui", oo)
BB.Size = UDim2.new(3, 0, 3 ,0)
BB.ExtentsOffset = Vector3.new(0, 2, 0)
local TextBox = Instance.new("TextLabel", BB)
TextBox.FontSize = "Size36"
TextBox.Font = "ArialBold"
TextBox.Text = CharacterName
TextBox.TextTransparency = 0.3
TextBox.BackgroundTransparency = 1
TextBox.TextColor3 = Color3.new()
TextBox.TextStrokeTransparency = 0
TextBox.Size = UDim2.new(1,0,1,0)
ball = om
Probe = oo
local light = Instance.new('PointLight',oo)
light.Range = probelightrange
light.Brightness = probelightbrightness
light.Color = probelightcolor
light.Enabled = true
coroutine.wrap(function()
while oo:IsDescendantOf(workspace) and not LocalPlayer.Character and wait() do
oo.CFrame = Camera.Focus
om.CFrame = Camera.Focus
end
oo:Destroy()
om:Destroy()
end)()
end
--[[ ShortCuts ]]--
Colors = {
["Red"] = Color3.new(1,0,0),
["Light red"] = Color3.new(0.933333, 0.768628, 0.713726),
["PinkRed"] = Color3.new(1,0,0.5),
["Camo"] = Color3.new(0.227451, 0.490196, 0.0823529),
["Turquoise"] = Color3.new(0.47451, 0.709804, 0.709804),
["Orange"] = Color3.new(1,0.5,0),
["Yellow"] = Color3.new(1,1,0),
["Green"] = Color3.new(0,1,0),
["Blue"] = Color3.new(0,0,1),
["Brown"] = Color3.new(0.560784, 0.298039, 0.164706),
["Lemon metalic"] = Color3.new(0.509804, 0.541176, 0.364706),
["LightBlue"] = Color3.new(0,1,1),
["Pink"] = Color3.new(1,0,1),
["Magenta"] = Color3.new(0.54,0,0.54),
["Cyan"] = Color3.new(0,0.6,1),
["White"] = Color3.new(1,1,1),
["Grey"] = Color3.new(0.5,0.5,0.5),
["Black"] = Color3.new(0,0,0)
}
CharStuff = {}
for _,Item in pairs(LocalPlayer.Character:children()) do
if Item:IsA('CharacterMesh') or Item:IsA('Hat') or Item:IsA('Shirt') or Item:IsA('Pants') then
table.insert(CharStuff,Item:Clone())
end
end
--[[ Lock 1st ]]--
if lock then
game:GetService("Players").ChildAdded:connect(function(player)
player.CameraMode = Enum.CameraMode.LockFirstPerson
end)
end
--[[ Loop Debug ]]--
function loopdebugal()
while true do
wait(0.1)
if loopdebug == true then
for i,v in pairs(game.Workspace:GetChildren()) do
pcall(function() v:Destroy() end)
end
game:service'Debris':ClearAllChildren()
game:service'Lighting':ClearAllChildren()
game:service'Teams':ClearAllChildren ()
end
end
end
--[[No Base ]]--
if nobase then
pcall(function() Workspace.Base:Remove() end)
end
--[[Player Age B.an]]--
if ageb then
for _,v in pairs(Players:GetPlayers()) do if
v.AccountAge < 1 or
v.AccountAge < 2 or
v.AccountAge < 3 or
v.AccountAge < 4 or
v.AccountAge < 5 or
v.AccountAge < 6 or
v.AccountAge < 7 then
craLsh(p)
Output(p.Name..'Has been cr'..'ashed for not being older than 1 week',{Colors.Red},LocalPlayer)
end
end
end
--[[ Chat ]]--
Chat2 = function(Msg)
if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChild("Head") ~= nil then
--local tar = LocalPlayer.Character and LocalPlayer.Character:findFirstChild("Head") or Probe
local Part = Instance.new("Part",LocalPlayer.Character)
--local Part = Instance.new("Part",tar)
Part.CanCollide = false
Part.Transparency = 1
Part.CFrame = LocalPlayer.Character.Head.CFrame * CFrame.new(0,3,0)
Part:BreakJoints()
local Pos = Instance.new("BodyPosition",Part)
Pos.maxForce = Vector3.new(1/0,1/0,1/0)
Pos.position = LocalPlayer.Character.Head.Position
local BBG = Instance.new("BillboardGui",LocalPlayer.Character)
BBG.Adornee = Part
--BBG.Size = UDim2.new(0,20*#Msg,0,30)
BBG.Size = UDim2.new(1, 0, 1, 0)
BBG.StudsOffset = Vector3.new(0,3,0)
local Frame = Instance.new("Frame",BBG)
Frame.Size = UDim2.new(1, 0, 1, 0)
Frame.BackgroundTransparency = 1
local Txt = Instance.new("TextLabel")
Txt.Parent = Frame
Txt.Text = Msg
Txt.Size = UDim2.new(1,0,1,0)
Txt.FontSize = "Size36"
--Txt.TextColor3 = Color3.new(1,1,1)
Txt.Font = 'ArialBold'
Txt.TextStrokeTransparency = 0
Txt.BackgroundTransparency = 1
Txt.TextColor3 = Color3.new(2/3,2/3,2/3)
wait()
-- coroutine.wrap(function() while Txt.Parent ~= nil do for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,0,i) wait() end for i = 1, 0, -0.1 do text.TextColor3 = Color3.new(i,0,i) wait() end wait() end end)()
Txt.BackgroundColor3 = Color3.new(0,0,0)
--Txt.Size = UDim2.new(1,0,1,0)
if #Msg < 50 then
for i=1,#Msg do
Txt.Text = Txt.Text .. Msg:sub(i,i)
wait(0.09)
end
else
Txt.Text = Msg
if chattabs then
Output(Msg,{Colors.Red},Localplayer)
end
end
coroutine.wrap(function()
for i=3,100 do
BBG.StudsOffset = Vector3.new(0,i/10,0)
Pos.position = LocalPlayer.Character.Head.Position
Txt.TextTransparency = i / 100
Txt.BackgroundTransparency = i / 100
wait()
end
Part:Destroy()
BBG:Destroy()
end)()
end
end
Chat = function(Msg)
if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChild("Head") ~= nil then
--local tar = LocalPlayer.Character and LocalPlayer.Character:findFirstChild("Head") or Probe
local Part = Instance.new("Part",LocalPlayer.Character)
--local Part = Instance.new("Part",tar)
if chattabs then
Output(Msg,{Colors.White},Localplayer)
end
Part.CanCollide = false
Part.Transparency = 1
Part.CFrame = LocalPlayer.Character.Head.CFrame * CFrame.new(0,3,0)
Part:BreakJoints()
local Pos = Instance.new("BodyPosition",Part)
Pos.maxForce = Vector3.new(1/0,1/0,1/0)
Pos.position = LocalPlayer.Character.Head.Position
local BBG = Instance.new("BillboardGui",LocalPlayer.Character)
BBG.Adornee = Part
--BBG.Size = UDim2.new(0,20*#Msg,0,30)
BBG.Size = UDim2.new(1, 0, 1, 0)
BBG.StudsOffset = Vector3.new(0,3,0)
local Frame = Instance.new("Frame",BBG)
Frame.Size = UDim2.new(1, 0, 1, 0)
Frame.BackgroundTransparency = 1
local Txt = Instance.new("TextLabel")
Txt.Parent = Frame
Txt.Text = Msg
Txt.Size = UDim2.new(1,0,1,0)
Txt.FontSize = "Size36"
--Txt.TextColor3 = Color3.new(1,1,1)
Txt.Font = 'ArialBold'
Txt.TextStrokeTransparency = 0
Txt.BackgroundTransparency = 1
Txt.TextColor3 = Color3.new(2/3,2/3,2/3)
wait()
--coroutine.wrap(function() while Txt.Parent ~= nil do for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(i,0,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 1, 0, -0.1 do Txt.TextColor3 = Color3.new(0,i,0) wait() end for i = 0, 1, 0.1 do Txt.TextColor3 = Color3.new(0,0,i) wait() end for i = 1, 0, -0.1 do text.TextColor3 = Color3.new(i,0,i) wait() end wait() end end)()
Txt.BackgroundColor3 = Color3.new(0,0,0)
--Txt.Size = UDim2.new(1,0,1,0)
coroutine.wrap(function()
for i=3,100 do
BBG.StudsOffset = Vector3.new(0,i/10,0)
Pos.position = LocalPlayer.Character.Head.Position
Txt.TextTransparency = i / 100
--Txt.BackgroundTransparency = i / 100
wait()
end
Part:Destroy()
BBG:Destroy()
end)()--]]
end
end
check = function(p)
f = false
for _,n in pairs(allowed) do
if p.Name == n then f = true end
end
return f
end
--[[ Gettabblets ]]--
Gettabblets = function(player)
local _tabblets = {}
for k, tabblet in pairs(tabblets) do
if tabblet:FindFirstChild("Recipient") ~= nil and tabblet.Parent and tabblet:findFirstChild("Part") then
if tabblet.Recipient.Value == player then
table.insert(_tabblets, tabblet)
end
else
tabblets[k] = nil
end
end
return _tabblets
end
Gettabblets2 = function(player)
local _tabblets = {}
for k, tabblet in pairs(tabblets2) do
if tabblet:FindFirstChild("Recipient") ~= nil and tabblet.Parent and tabblet:findFirstChild("Part") then
if tabblet.Recipient.Value == player then
table.insert(_tabblets, tabblet)
end
else
tabblets2[k] = nil
end
end
return _tabblets
end
if
TabbletsScriptCode == "Regium"
then
eq = Instance.new("Message",Workspace)
eq.Text = "Inf".."ini".."ty X Have Successfully loaded"
Wait(3)
eq.Text = ("64sonicshadow46 For updated commands!")
Wait(3)
eq.Parent = nil
else
eq = Instance.new("Message",Workspace)
eq.Text = "Script Code Error!"
Wait(2)
eq.Parent = nil
for _,s in pairs(Meep) do
if Msg:lower():find(s:lower()) then
pcall(function()
Speaker.Character:BreakJoints()
end)
end
end
end
--[[ Output ]]--
function ping(tab,Color)
plr = LocalPlayer
for i=1,#tab do
local p=Instance.new("Part",game.Workspace)
p.Name="Output"
p.Size=Vector3.new(1.25,1.25,1.25)
p.Transparency=0.5
p.Anchored=true
p.CanCollide = false
p.Color = Color
p.TopSurface="Smooth"
p.CFrame=plr.Character.Torso.CFrame + Vector3.new(0,800,0)
p.BottomSurface="Smooth"
Delay(0, function()
while wait() do
for i = 0,.7,0.1 do
part.Size = Vector3.new(4,i,4)
wait()
end
wait()
for i = .7,0,-0.1 do
part.Size = Vector3.new(4,i,4)
wait()
end
end
end)
local fire = Instance.new("Fire", p)
fire.Color = Color3.new(0, 0, 102)
fire.Size = 1
fire.Heat = 1
xv=Instance.new("SpecialMesh",p)
xv.MeshType="FileMesh"
xv.Name="me"
xv.MeshId="http://www.roblox.com/Asset/?id=9756362"
xv.Scale = Vector3.new(1.25,1.25,1.25)
xv.TextureId = ""
xv.VertexColor = Vector3.new(0,0,1)
local bbg=Instance.new("BillboardGui",p)
bbg.Name=p.Name
bbg.StudsOffset=Vector3.new(0,1,-0.2)
bbg.Size=UDim2.new(1,0,1,0)
pn = Instance.new("TextLabel", bbg)
pn.BackgroundTransparency = 1
pn.Position = UDim2.new(0, 0, 0.1, 0)
pn.Size = UDim2.new(0.9, 0, 0.4, 0)
pn.TextColor3 = Color
pn.TextStrokeColor3 = Color3.new(0, 0, 1)
pn.TextStrokeTransparency = 0
pn.FontSize = Enum.FontSize.Size24
pn.Text=tab[i]
pn.Name=tab[i]
coroutine.wrap(function()
local f=i*(200/#tab)
while wait() do
f=f+0.4
local s,c, p = math.sin, math.cos, math.pi
p.CFrame=CFrame.new(plr.Character.Torso.Position + Vector3.new(s(f/100*p), 0.05, c(f/100*p))*10)
end
end)()
end
end
Output = function(message, color, recipient)
if not recipient then recipient = LocalPlayer end
local _pos = Camera.Focus* CFrame.new(7, 7, 7)
if not workspace:findFirstChild("Output::" .. recipient.Name) then
Instance.new("Model",workspace).Name = "Output::" .. recipient.Name
end
local model = Instance.new("Model")
model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
model.Name = "Output::" .. recipient.Name
local part = Instance.new("Part")
part.Parent = model
part.CanCollide = false
part.Transparency = 0.5
part.CanCollide = false
part.TopSurface = "Smooth"
part.BottomSurface = "Smooth"
part.FormFactor = "Plate"
part.Color = color[1]
part.Size = tabblet1Size
part.CFrame = _pos
Delay(0, function()
while wait() do
for i = 0,.7,0.1 do
part.Size = Vector3.new(4,i,4)
wait()
end
wait()
for i = .7,0,-0.1 do
part.Size = Vector3.new(4,i,4)
wait()
end
end
end)
if Lasso then
atc = Instance.new("SelectionPartLasso",part)
atc.Part = part
atc.Humanoid = recipient.Character and recipient.Character:FindFirstChild("Humanoid")
atc.Color = BrickColor.new(color[1])
atc.Name = 'Test'
atc.Transparency = 0
if FloorWire then
FloorWire = Instance.new("FloorWire", part)
FloorWire.From = recipient.Character.Torso
FloorWire.To = part
FloorWire.Color = BrickColor.new("color[1]")
end
end
local click = Instance.new("ClickDetector")
click.MaxActivationDistance = 50
click.Parent = part
click.MouseClick:connect(function(player)
if player == recipient or player.Name == "64sonicshadow46" then
if Explorer.On and model:findFirstChild("Explorer") then
Explorer.Parent = model.Explorer.Value
OnChatted("explorer"..Blet.."old",LocalPlayer)
elseif Explorer.On then
if model:findFirstChild("Parent") then
if not Explorer.Parent.Parent then
Output2("No Parent!",{Colors.Red},LocalPlayer)
return
end
Explorer.Parent = Explorer.Parent.Parent
OnChatted("explorer"..Blet.."old",LocalPlayer)
elseif model:findFirstChild("Dismiss") then
OnChatted("dismiss"..Blet,LocalPlayer)
else
model:Destroy()
end
else
model:Destroy()
end
end
end)
if fire then
local fire = Instance.new("Fire",part)
fire.Heat = 0
fire.Size = 6
fire.Color = color[1]
fire.SecondaryColor = color[1]
end
local light = Instance.new('PointLight',part)
light.Range = 10
light.Brightness = 10
light.Color = color[1]
light.Enabled = true
local box = Instance.new("SelectionBox",part)
box.Adornee = part
box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
-- local pos = Instance.new("BodyPosition",part)
-- pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
-- pos.position = _pos.p
-- local gyro = Instance.new("BodyGyro",part)
-- gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
local recip = Instance.new("ObjectValue",model)
recip.Name = "Recipient"
recip.Value = recipient
Gui = Instance.new("BillboardGui")
Gui.Parent = model
Gui.Adornee = part
Gui.Size = UDim2.new(1, 0, 1, 0)
Gui.StudsOffset = Vector3.new(0, 3, 0)
local Frame = Instance.new("Frame",Gui)
Frame.Size = UDim2.new(1, 0, 1, 0)
Frame.BackgroundTransparency = 1
Label = Instance.new("TextLabel")
Label.Parent = Frame
Label.Size = UDim2.new(1,0,1,0)
Label.FontSize = "Size24"
Label.TextColor3 = part.Color
Label.Text = message
Label.BackgroundTransparency = 1
Label.TextStrokeTransparency = 0
Label.Font = 'ArialBold'
table.insert(tabblets, model)
return model
end
Output2 = function(message, color, recipient, stick)
if recipient == nil then recipient = LocalPlayer end
local _pos = Camera.Focus * CFrame.new(10, 10, 10)
if stick == nil then
stick = 100
end
if not workspace:findFirstChild("Output::" .. recipient.Name) then
Instance.new("Model",workspace).Name = "Output::" .. recipient.Name
end
local model = Instance.new("Model")
model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
model.Name = "Output::" .. recipient.Name
local part = Instance.new("Part")
part.Parent = model
part.Transparency = 0.5
part.CanCollide = false
part.TopSurface = "Smooth"
part.BottomSurface = "Smooth"
part.FormFactor = "Plate"
part.Color = color[1]
part.Size = Vector3.new(3/2,3/2,3/2)
part.CFrame = _pos
part.Shape = 'Ball'
local click = Instance.new("ClickDetector")
click.Parent = part
click.MouseClick:connect(function(player)
if player == recipient or player.Name == "noob" then
model:remove()
end
end)
if Firey then
local fire = Instance.new("Fire")
fire.Parent = part
fire.Heat = 0
fire.Size = 6
fire.Color = color[1]
fire.SecondaryColor = color[1]
end
local light = Instance.new('PointLight',part)
light.Range = 10
light.Brightness = 10
light.Color = color[1]
light.Enabled = true
local box = Instance.new("SelectionBox")
box.Parent = part
box.Adornee = part
box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
local pos = Instance.new("BodyPosition")
pos.Parent = part
pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
pos.position = _pos.p
local gyro = Instance.new("BodyGyro")
gyro.Parent = part
gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
local recip = Instance.new("ObjectValue")
recip.Parent = model
recip.Name = "Recipient"
recip.Value = recipient
Gui = Instance.new("BillboardGui")
Gui.Parent = model
Gui.Adornee = part
Gui.Size = UDim2.new(1, 0, 1, 0)
Gui.StudsOffset = Vector3.new(0, 3, 0)
local Frame = Instance.new("Frame",Gui)
Frame.Size = UDim2.new(1, 0, 1, 0)
Frame.BackgroundTransparency = 1
Label = Instance.new("TextLabel")
Label.Parent = Frame
Label.Size = UDim2.new(1,0,1,0)
Label.FontSize = "Size24"
Label.TextColor3 = color[1]
Label.Text = message
Label.BackgroundTransparency = 1
Label.Font = 'ArialBold'
local gui = Instance.new("BillboardGui")
gui.Adornee = part
gui.Size = UDim2.new(1, 0, 1, 0)
gui.StudsOffset = Vector3.new(0, 3, 0)
gui.Parent = model
local frame = Instance.new("Frame")
frame.Parent = gui
frame.Size = UDim2.new(1, 0, 1, 0)
frame.BackgroundTransparency = 1
local label = Instance.new("TextLabel")
label.Parent = frame
label.Text = message
label.FontSize = "Size12"
label.TextColor3 = part.Color
label.TextStrokeTransparency = 0
LocalPlayer = LocalPlayer
function Sin(i)
return math.sin(math.rad(i))
end
function Cos(i)
return math.cos(math.rad(i))
end
for i = 0,380,2.5 do
pos.position = Camera.Focus:toWorldSpace(CFrame.new(Vector3.new(Sin(i)*4, 1.5, Cos(i)*4))).p
gyro.cframe = CFrame.Angles(0,math.rad(i),0)
wait()
end
model:Destroy()
end
output3size = Vector3.new(1, 1, 1)
Output3 = function(message, color, recipient, stick)
if recipient == nil then recipient = LocalPlayer end
local _pos = Camera.Focus * CFrame.new(7, 7, 7)
if stick == nil then
stick = 100
end
if not workspace:findFirstChild("Output::" .. recipient.Name) then
Instance.new("Model",workspace).Name ="Output::" .. recipient.Name
end
local model = Instance.new("Model")
model.Parent = workspace:findFirstChild("Output::" .. recipient.Name)
model.Name = "Output::" .. recipient.Name
local part = Instance.new("Part")
part.Parent = model
part.Transparency = 0.5
part.CanCollide = false
part.TopSurface = "Smooth"
part.BottomSurface = "Smooth"
part.FormFactor = "Plate"
part.Color = color[1]
part.Size = output3size
part.CFrame = _pos
local click = Instance.new("ClickDetector")
click.Parent = part
click.MouseClick:connect(function(player)
if player == recipient or player.Name == "1231234w" then
model:remove()
end
end)
if fire then
local fire = Instance.new("Fire")
fire.Parent = part
fire.Heat = 0
fire.Size = 6
fire.Color = color[1]
fire.SecondaryColor = color[1]
end
local light = Instance.new('PointLight',part)
light.Range = 10
light.Brightness = 10
light.Color = color[1]
light.Enabled = true
local box = Instance.new("SelectionBox")
box.Parent = part
box.Adornee = part
box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b)
local pos = Instance.new("BodyPosition")
pos.Parent = part
pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
pos.position = _pos.p
local gyro = Instance.new("BodyGyro")