· 6 years ago · Mar 29, 2020, 06:44 PM
1function usescript()
2 local Events = game.workspace.Events
3
4loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
5
6assert(Drawing, 'exploit not supported')
7
8local UserInputService = game:GetService'UserInputService';
9local HttpService = game:GetService'HttpService';
10local GUIService = game:GetService'GuiService';
11local RunService = game:GetService'RunService';
12local Players = game:GetService'Players';
13local LocalPlayer = Players.LocalPlayer;
14local Camera = workspace.CurrentCamera
15local Mouse = LocalPlayer:GetMouse();
16local Menu = {};
17local MouseHeld = false;
18local LastRefresh = 0;
19local OptionsFile = 'IC3_ESP_SETTINGS.dat';
20local Binding = false;
21local BindedKey = nil;
22local OIndex = 0;
23local LineBox = {};
24local UIButtons = {};
25local Sliders = {};
26local Dragging = false;
27local DraggingUI = false;
28local DragOffset = Vector2.new();
29local DraggingWhat = nil;
30local OldData = {};
31local IgnoreList = {};
32local Red = Color3.new(1, 0, 0);
33local Green = Color3.new(0, 1, 0);
34local MenuLoaded = false;
35
36shared.MenuDrawingData = shared.MenuDrawingData or { Instances = {} };
37shared.PlayerData = shared.PlayerData or {};
38shared.RSName = shared.RSName or ('UnnamedESP_by_ic3-' .. HttpService:GenerateGUID(false));
39
40local GetDataName = shared.RSName .. '-GetData';
41local UpdateName = shared.RSName .. '-Update';
42
43local Debounce = setmetatable({}, {
44__index = function(t, i)
45return rawget(t, i) or false
46end;
47});
48
49pcall(function() shared.InputBeganCon:disconnect() end);
50pcall(function() shared.InputEndedCon:disconnect() end);
51
52function GetMouseLocation()
53return UserInputService:GetMouseLocation();
54end
55
56function MouseHoveringOver(Values)
57local X1, Y1, X2, Y2 = Values[1], Values[2], Values[3], Values[4]
58local MLocation = GetMouseLocation();
59return (MLocation.x >= X1 and MLocation.x <= (X1 + (X2 - X1))) and (MLocation.y >= Y1 and MLocation.y <= (Y1 + (Y2 - Y1)));
60end
61
62function GetTableData(t) -- basically table.foreach i dont even know why i made this
63if typeof(t) ~= 'table' then return end
64return setmetatable(t, {
65__call = function(t, func)
66if typeof(func) ~= 'function' then return end;
67for i, v in pairs(t) do
68pcall(func, i, v);
69end
70end;
71});
72end
73local function Format(format, ...)
74return string.format(format, ...);
75end
76function CalculateValue(Min, Max, Percent)
77return Min + math.floor(((Max - Min) * Percent) + .5);
78end
79
80local Options = setmetatable({}, {
81__call = function(t, ...)
82local Arguments = {...};
83local Name = Arguments[1];
84OIndex = OIndex + 1; -- (typeof(Arguments[3]) == 'boolean' and 1 or 0);
85rawset(t, Name, setmetatable({
86Name = Arguments[1];
87Text = Arguments[2];
88Value = Arguments[3];
89DefaultValue = Arguments[3];
90AllArgs = Arguments;
91Index = OIndex;
92}, {
93__call = function(t, v)
94if typeof(t.Value) == 'function' then
95t.Value();
96elseif typeof(t.Value) == 'EnumItem' then
97local BT = Menu:GetInstance(Format('%s_BindText', t.Name));
98Binding = true;
99local Val = 0
100while Binding do
101wait();
102Val = (Val + 1) % 17;
103BT.Text = Val <= 8 and '|' or '';
104end
105t.Value = BindedKey;
106BT.Text = tostring(t.Value):match'%w+%.%w+%.(.+)';
107BT.Position = t.BasePosition + Vector2.new(t.BaseSize.X - BT.TextBounds.X - 20, -10);
108else
109local NewValue = v;
110if NewValue == nil then NewValue = not t.Value; end
111rawset(t, 'Value', NewValue);
112if Arguments[2] ~= nil then
113if typeof(Arguments[3]) == 'number' then
114local AMT = Menu:GetInstance(Format('%s_AmountText', t.Name));
115AMT.Text = tostring(t.Value);
116AMT.Position = t.BasePosition + Vector2.new(t.BaseSize.X - AMT.TextBounds.X - 10, -10);
117else
118local Inner = Menu:GetInstance(Format('%s_InnerCircle', t.Name));
119Inner.Visible = t.Value;
120end
121end
122end
123end;
124}));
125end;
126})
127
128function Load()
129local _, Result = pcall(readfile, OptionsFile);
130if _ then -- extremely ugly code yea i know but i dont care p.s. i hate pcall
131local _, Table = pcall(HttpService.JSONDecode, HttpService, Result);
132if _ then
133for i, v in pairs(Table) do
134if Options[i] ~= nil and Options[i].Value ~= nil and (typeof(Options[i].Value) == 'boolean' or typeof(Options[i].Value) == 'number') then
135Options[i].Value = v.Value;
136pcall(Options[i], v.Value);
137end
138end
139end
140end
141end
142
143Options('Enabled', 'ESP Enabled', true);
144Options('ShowTeam', 'Show Team', false);
145Options('ShowName', 'Show Names', true);
146Options('ShowDistance', 'Show Distance', true);
147Options('ShowHealth', 'Show Health', true);
148Options('ShowBoxes', 'Show Boxes', true);
149Options('ShowTracers', 'Show Tracers', true);
150Options('ShowDot', 'Show Head Dot', false);
151Options('VisCheck', 'Visibility Check', false);
152Options('Crosshair', 'Crosshair', false);
153Options('TextOutline', 'Text Outline', true);
154Options('TextSize', 'Text Size', syn and 18 or 14, 10, 24); -- cuz synapse fonts look weird???
155Options('MaxDistance', 'Max Distance', 2500, 100, 5000);
156Options('RefreshRate', 'Refresh Rate (ms)', 5, 1, 200);
157Options('MenuKey', 'Menu Key', Enum.KeyCode.F4, 1);
158Options('ResetSettings', 'Reset Settings', function()
159for i, v in pairs(Options) do
160if Options[i] ~= nil and Options[i].Value ~= nil and Options[i].Text ~= nil and (typeof(Options[i].Value) == 'boolean' or typeof(Options[i].Value) == 'number') then
161Options[i](Options[i].DefaultValue);
162end
163end
164end, 4);
165Options('LoadSettings', 'Load Settings', Load, 3);
166Options('SaveSettings', 'Save Settings', function()
167writefile(OptionsFile, HttpService:JSONEncode(Options));
168end, 2)
169-- Options.SaveSettings.Value();
170
171Load();
172
173Options('MenuOpen', nil, true);
174
175local function Set(t, i, v)
176t[i] = v;
177end
178local function Combine(...)
179local Output = {};
180for i, v in pairs{...} do
181if typeof(v) == 'table' then
182table.foreach(v, function(i, v)
183Output[i] = v;
184end)
185end
186end
187return Output
188end
189function IsStringEmpty(String)
190if type(String) == 'string' then
191return String:match'^%s+$' ~= nil or #String == 0 or String == '' or false;
192end
193return false
194end
195
196function NewDrawing(InstanceName)
197local Instance = Drawing.new(InstanceName);
198return (function(Properties)
199for i, v in pairs(Properties) do
200pcall(Set, Instance, i, v);
201end
202return Instance;
203end)
204end
205
206function Menu:AddMenuInstace(Name, Instance)
207if shared.MenuDrawingData.Instances[Name] ~= nil then
208shared.MenuDrawingData.Instances[Name]:Remove();
209end
210shared.MenuDrawingData.Instances[Name] = Instance;
211return Instance;
212end
213function Menu:UpdateMenuInstance(Name)
214local Instance = shared.MenuDrawingData.Instances[Name];
215if Instance ~= nil then
216return (function(Properties)
217for i, v in pairs(Properties) do
218-- print(Format('%s %s -> %s', Name, tostring(i), tostring(v)));
219pcall(Set, Instance, i, v);
220end
221return Instance;
222end)
223end
224end
225function Menu:GetInstance(Name)
226return shared.MenuDrawingData.Instances[Name];
227end
228
229function LineBox:Create(Properties)
230local Box = { Visible = true }; -- prevent errors not really though dont worry bout the Visible = true thing
231
232local Properties = Combine({
233Transparency = 1;
234Thickness = 1;
235Visible = true;
236}, Properties);
237
238Box['TopLeft'] = NewDrawing'Line'(Properties);
239Box['TopRight'] = NewDrawing'Line'(Properties);
240Box['BottomLeft'] = NewDrawing'Line'(Properties);
241Box['BottomRight'] = NewDrawing'Line'(Properties);
242
243function Box:Update(CF, Size, Color, Properties)
244if not CF or not Size then return end
245
246local TLPos, Visible1 = Camera:WorldToViewportPoint((CF * CFrame.new( Size.X, Size.Y, 0)).p);
247local TRPos, Visible2 = Camera:WorldToViewportPoint((CF * CFrame.new(-Size.X, Size.Y, 0)).p);
248local BLPos, Visible3 = Camera:WorldToViewportPoint((CF * CFrame.new( Size.X, -Size.Y, 0)).p);
249local BRPos, Visible4 = Camera:WorldToViewportPoint((CF * CFrame.new(-Size.X, -Size.Y, 0)).p);
250-- ## BEGIN UGLY CODE
251if Visible1 then
252Box['TopLeft'].Visible = true;
253Box['TopLeft'].Color = Color;
254Box['TopLeft'].From = Vector2.new(TLPos.X, TLPos.Y);
255Box['TopLeft'].To = Vector2.new(TRPos.X, TRPos.Y);
256else
257Box['TopLeft'].Visible = false;
258end
259if Visible2 then
260Box['TopRight'].Visible = true;
261Box['TopRight'].Color = Color;
262Box['TopRight'].From = Vector2.new(TRPos.X, TRPos.Y);
263Box['TopRight'].To = Vector2.new(BRPos.X, BRPos.Y);
264else
265Box['TopRight'].Visible = false;
266end
267if Visible3 then
268Box['BottomLeft'].Visible = true;
269Box['BottomLeft'].Color = Color;
270Box['BottomLeft'].From = Vector2.new(BLPos.X, BLPos.Y);
271Box['BottomLeft'].To = Vector2.new(TLPos.X, TLPos.Y);
272else
273Box['BottomLeft'].Visible = false;
274end
275if Visible4 then
276Box['BottomRight'].Visible = true;
277Box['BottomRight'].Color = Color;
278Box['BottomRight'].From = Vector2.new(BRPos.X, BRPos.Y);
279Box['BottomRight'].To = Vector2.new(BLPos.X, BLPos.Y);
280else
281Box['BottomRight'].Visible = false;
282end
283-- ## END UGLY CODE
284if Properties then
285GetTableData(Properties)(function(i, v)
286pcall(Set, Box['TopLeft'], i, v);
287pcall(Set, Box['TopRight'], i, v);
288pcall(Set, Box['BottomLeft'], i, v);
289pcall(Set, Box['BottomRight'], i, v);
290end)
291end
292end
293function Box:SetVisible(bool)
294pcall(Set, Box['TopLeft'], 'Visible', bool);
295pcall(Set, Box['TopRight'], 'Visible', bool);
296pcall(Set, Box['BottomLeft'], 'Visible', bool);
297pcall(Set, Box['BottomRight'], 'Visible', bool);
298end
299function Box:Remove()
300self:SetVisible(false);
301Box['TopLeft']:Remove();
302Box['TopRight']:Remove();
303Box['BottomLeft']:Remove();
304Box['BottomRight']:Remove();
305end
306
307return Box;
308end
309
310function CreateMenu(NewPosition) -- Create Menu
311local function FromHex(HEX)
312HEX = HEX:gsub('#', '');
313return Color3.fromRGB(tonumber('0x' .. HEX:sub(1, 2)), tonumber('0x' .. HEX:sub(3, 4)), tonumber('0x' .. HEX:sub(5, 6)));
314end
315
316local Colors = {
317Primary = {
318Main = FromHex'424242';
319Light = FromHex'6d6d6d';
320Dark = FromHex'1b1b1b';
321};
322Secondary = {
323Main = FromHex'e0e0e0';
324Light = FromHex'ffffff';
325Dark = FromHex'aeaeae';
326};
327};
328
329MenuLoaded = false;
330
331GetTableData(UIButtons)(function(i, v)
332v.Instance.Visible = false;
333v.Instance:Remove();
334end)
335GetTableData(Sliders)(function(i, v)
336v.Instance.Visible = false;
337v.Instance:Remove();
338end)
339
340UIButtons = {};
341Sliders = {};
342
343local BaseSize = Vector2.new(300, 580);
344local BasePosition = NewPosition or Vector2.new(Camera.ViewportSize.X / 8 - (BaseSize.X / 2), Camera.ViewportSize.Y / 2 - (BaseSize.Y / 2));
345
346Menu:AddMenuInstace('CrosshairX', NewDrawing'Line'{
347Visible = false;
348Color = Color3.new(0, 1, 0);
349Transparency = 1;
350Thickness = 1;
351});
352Menu:AddMenuInstace('CrosshairY', NewDrawing'Line'{
353Visible = false;
354Color = Color3.new(0, 1, 0);
355Transparency = 1;
356Thickness = 1;
357});
358
359delay(.025, function() -- since zindex doesnt exist
360Menu:AddMenuInstace('Main', NewDrawing'Square'{
361Size = BaseSize;
362Position = BasePosition;
363Filled = false;
364Color = Colors.Primary.Main;
365Thickness = 3;
366Visible = true;
367});
368end);
369Menu:AddMenuInstace('TopBar', NewDrawing'Square'{
370Position = BasePosition;
371Size = Vector2.new(BaseSize.X, 25);
372Color = Colors.Primary.Dark;
373Filled = true;
374Visible = true;
375});
376Menu:AddMenuInstace('TopBarTwo', NewDrawing'Square'{
377Position = BasePosition + Vector2.new(0, 25);
378Size = Vector2.new(BaseSize.X, 60);
379Color = Colors.Primary.Main;
380Filled = true;
381Visible = true;
382});
383Menu:AddMenuInstace('TopBarText', NewDrawing'Text'{
384Size = 25;
385Position = shared.MenuDrawingData.Instances.TopBarTwo.Position + Vector2.new(25, 15);
386Text = 'Unnamed ESP';
387Color = Colors.Secondary.Light;
388Visible = true;
389});
390Menu:AddMenuInstace('TopBarTextBR', NewDrawing'Text'{
391Size = 15;
392Position = shared.MenuDrawingData.Instances.TopBarTwo.Position + Vector2.new(BaseSize.X - 65, 40);
393Text = 'by ic3w0lf';
394Color = Colors.Secondary.Dark;
395Visible = true;
396});
397Menu:AddMenuInstace('Filling', NewDrawing'Square'{
398Size = BaseSize - Vector2.new(0, 85);
399Position = BasePosition + Vector2.new(0, 85);
400Filled = true;
401Color = Colors.Secondary.Main;
402Transparency= .5;
403Visible = true;
404});
405
406local CPos = 0;
407
408GetTableData(Options)(function(i, v)
409if typeof(v.Value) == 'boolean' and not IsStringEmpty(v.Text) and v.Text ~= nil then
410CPos = CPos + 25;
411local BaseSize = Vector2.new(BaseSize.X, 30);
412local BasePosition = shared.MenuDrawingData.Instances.Filling.Position + Vector2.new(30, v.Index * 25 - 10);
413UIButtons[#UIButtons + 1] = {
414Option = v;
415Instance = Menu:AddMenuInstace(Format('%s_Hitbox', v.Name), NewDrawing'Square'{
416Position = BasePosition - Vector2.new(30, 15);
417Size = BaseSize;
418Visible = false;
419});
420};
421Menu:AddMenuInstace(Format('%s_OuterCircle', v.Name), NewDrawing'Circle'{
422Radius = 10;
423Position = BasePosition;
424Color = Colors.Secondary.Light;
425Filled = true;
426Visible = true;
427});
428Menu:AddMenuInstace(Format('%s_InnerCircle', v.Name), NewDrawing'Circle'{
429Radius = 7;
430Position = BasePosition;
431Color = Colors.Secondary.Dark;
432Filled = true;
433Visible = v.Value;
434});
435Menu:AddMenuInstace(Format('%s_Text', v.Name), NewDrawing'Text'{
436Text = v.Text;
437Size = 20;
438Position = BasePosition + Vector2.new(20, -10);
439Visible = true;
440Color = Colors.Primary.Dark;
441});
442end
443end)
444GetTableData(Options)(function(i, v) -- just to make sure certain things are drawn before or after others, too lazy to actually sort table
445if typeof(v.Value) == 'number' then
446CPos = CPos + 25;
447
448local BaseSize = Vector2.new(BaseSize.X, 30);
449local BasePosition = shared.MenuDrawingData.Instances.Filling.Position + Vector2.new(0, CPos - 10);
450
451local Text = Menu:AddMenuInstace(Format('%s_Text', v.Name), NewDrawing'Text'{
452Text = v.Text;
453Size = 20;
454Position = BasePosition + Vector2.new(20, -10);
455Visible = true;
456Color = Colors.Primary.Dark;
457});
458local AMT = Menu:AddMenuInstace(Format('%s_AmountText', v.Name), NewDrawing'Text'{
459Text = tostring(v.Value);
460Size = 20;
461Position = BasePosition;
462Visible = true;
463Color = Colors.Primary.Dark;
464});
465local Line = Menu:AddMenuInstace(Format('%s_SliderLine', v.Name), NewDrawing'Line'{
466Transparency = 1;
467Color = Colors.Primary.Dark;
468Thickness = 3;
469Visible = true;
470From = BasePosition + Vector2.new(20, 20);
471To = BasePosition + Vector2.new(BaseSize.X - 10, 20);
472});
473CPos = CPos + 10;
474local Slider = Menu:AddMenuInstace(Format('%s_Slider', v.Name), NewDrawing'Circle'{
475Visible = true;
476Filled = true;
477Radius = 6;
478Color = Colors.Secondary.Dark;
479Position = BasePosition + Vector2.new(35, 20);
480})
481
482local CSlider = {Slider = Slider; Line = Line; Min = v.AllArgs[4]; Max = v.AllArgs[5]; Option = v};
483Sliders[#Sliders + 1] = CSlider;
484
485-- local Percent = (v.Value / CSlider.Max) * 100;
486-- local Size = math.abs(Line.From.X - Line.To.X);
487-- local Value = Size * (Percent / 100); -- this shit's inaccurate but fuck it i'm not even gonna bother fixing it
488
489Slider.Position = BasePosition + Vector2.new(40, 20);
490
491v.BaseSize = BaseSize;
492v.BasePosition = BasePosition;
493AMT.Position = BasePosition + Vector2.new(BaseSize.X - AMT.TextBounds.X - 10, -10)
494end
495end)
496GetTableData(Options)(function(i, v) -- just to make sure certain things are drawn before or after others, too lazy to actually sort table
497if typeof(v.Value) == 'EnumItem' then
498CPos = CPos + 30;
499
500local BaseSize = Vector2.new(BaseSize.X, 30);
501local BasePosition = shared.MenuDrawingData.Instances.Filling.Position + Vector2.new(0, CPos - 10);
502
503UIButtons[#UIButtons + 1] = {
504Option = v;
505Instance = Menu:AddMenuInstace(Format('%s_Hitbox', v.Name), NewDrawing'Square'{
506Size = Vector2.new(BaseSize.X, 20) - Vector2.new(30, 0);
507Visible = true;
508Transparency= .5;
509Position = BasePosition + Vector2.new(15, -10);
510Color = Colors.Secondary.Light;
511Filled = true;
512});
513};
514local Text = Menu:AddMenuInstace(Format('%s_Text', v.Name), NewDrawing'Text'{
515Text = v.Text;
516Size = 20;
517Position = BasePosition + Vector2.new(20, -10);
518Visible = true;
519Color = Colors.Primary.Dark;
520});
521local BindText = Menu:AddMenuInstace(Format('%s_BindText', v.Name), NewDrawing'Text'{
522Text = tostring(v.Value):match'%w+%.%w+%.(.+)';
523Size = 20;
524Position = BasePosition;
525Visible = true;
526Color = Colors.Primary.Dark;
527});
528
529Options[i].BaseSize = BaseSize;
530Options[i].BasePosition = BasePosition;
531BindText.Position = BasePosition + Vector2.new(BaseSize.X - BindText.TextBounds.X - 20, -10);
532end
533end)
534GetTableData(Options)(function(i, v) -- just to make sure certain things are drawn before or after others, too lazy to actually sort table
535if typeof(v.Value) == 'function' then
536local BaseSize = Vector2.new(BaseSize.X, 30);
537local BasePosition = shared.MenuDrawingData.Instances.Filling.Position + Vector2.new(0, CPos + (25 * v.AllArgs[4]) - 35);
538
539UIButtons[#UIButtons + 1] = {
540Option = v;
541Instance = Menu:AddMenuInstace(Format('%s_Hitbox', v.Name), NewDrawing'Square'{
542Size = Vector2.new(BaseSize.X, 20) - Vector2.new(30, 0);
543Visible = true;
544Transparency= .5;
545Position = BasePosition + Vector2.new(15, -10);
546Color = Colors.Secondary.Light;
547Filled = true;
548});
549};
550local Text = Menu:AddMenuInstace(Format('%s_Text', v.Name), NewDrawing'Text'{
551Text = v.Text;
552Size = 20;
553Position = BasePosition + Vector2.new(20, -10);
554Visible = true;
555Color = Colors.Primary.Dark;
556});
557
558-- BindText.Position = BasePosition + Vector2.new(BaseSize.X - BindText.TextBounds.X - 10, -10);
559end
560end)
561
562delay(.1, function()
563MenuLoaded = true;
564end);
565
566-- this has to be at the bottom cuz proto drawing api doesnt have zindex :triumph:
567Menu:AddMenuInstace('Cursor1', NewDrawing'Line'{
568Visible = false;
569Color = Color3.new(1, 0, 0);
570Transparency = 1;
571Thickness = 2;
572});
573Menu:AddMenuInstace('Cursor2', NewDrawing'Line'{
574Visible = false;
575Color = Color3.new(1, 0, 0);
576Transparency = 1;
577Thickness = 2;
578});
579Menu:AddMenuInstace('Cursor3', NewDrawing'Line'{
580Visible = false;
581Color = Color3.new(1, 0, 0);
582Transparency = 1;
583Thickness = 2;
584});
585end
586
587CreateMenu();
588
589shared.InputBeganCon = UserInputService.InputBegan:connect(function(input)
590if input.UserInputType.Name == 'MouseButton1' and Options.MenuOpen.Value then
591MouseHeld = true;
592local Bar = Menu:GetInstance'TopBar';
593local Values = {
594Bar.Position.X;
595Bar.Position.Y;
596Bar.Position.X + Bar.Size.X;
597Bar.Position.Y + Bar.Size.Y;
598}
599if MouseHoveringOver(Values) and not syn then -- disable dragging for synapse cuz idk why it breaks
600DraggingUI = true;
601DragOffset = Menu:GetInstance'Main'.Position - GetMouseLocation();
602else
603for i, v in pairs(Sliders) do
604local Values = {
605v.Line.From.X - (v.Slider.Radius);
606v.Line.From.Y - (v.Slider.Radius);
607v.Line.To.X + (v.Slider.Radius);
608v.Line.To.Y + (v.Slider.Radius);
609};
610if MouseHoveringOver(Values) then
611DraggingWhat = v;
612Dragging = true;
613break
614end
615end
616end
617end
618end)
619shared.InputEndedCon = UserInputService.InputEnded:connect(function(input)
620if input.UserInputType.Name == 'MouseButton1' and Options.MenuOpen.Value then
621MouseHeld = false;
622for i, v in pairs(UIButtons) do
623local Values = {
624v.Instance.Position.X;
625v.Instance.Position.Y;
626v.Instance.Position.X + v.Instance.Size.X;
627v.Instance.Position.Y + v.Instance.Size.Y;
628};
629if MouseHoveringOver(Values) then
630v.Option();
631break -- prevent clicking 2 options
632end
633end
634elseif input.UserInputType.Name == 'Keyboard' then
635if Binding then
636BindedKey = input.KeyCode;
637Binding = false;
638elseif input.KeyCode == Options.MenuKey.Value or (input.KeyCode == Enum.KeyCode.Home and UserInputService:IsKeyDown(Enum.KeyCode.LeftControl)) then
639Options.MenuOpen();
640end
641end
642end)
643
644function ToggleMenu()
645if Options.MenuOpen.Value then
646GetTableData(shared.MenuDrawingData.Instances)(function(i, v)
647if OldData[v] then
648pcall(Set, v, 'Visible', true);
649end
650end)
651else
652-- GUIService:SetMenuIsOpen(false);
653GetTableData(shared.MenuDrawingData.Instances)(function(i, v)
654if v.Visible == true then
655OldData[v] = true;
656pcall(Set, v, 'Visible', false);
657end
658end)
659end
660end
661
662function CheckRay(Player, Distance, Position, Unit)
663local Pass = true;
664
665if Distance > 999 then return false; end
666
667local _Ray = Ray.new(Position, Unit * Distance);
668
669local List = {LocalPlayer.Character, Camera, Mouse.TargetFilter};
670
671for i,v in pairs(IgnoreList) do table.insert(List, v); end;
672
673local Hit = workspace:FindPartOnRayWithIgnoreList(_Ray, List);
674if Hit and not Hit:IsDescendantOf(Player.Character) then
675Pass = false;
676if Hit.Transparency >= .3 or not Hit.CanCollide and Hit.ClassName ~= Terrain then -- Detect invisible walls
677IgnoreList[#IgnoreList + 1] = Hit;
678end
679end
680
681return Pass;
682end
683
684function CheckPlayer(Player)
685if not Options.Enabled.Value then return false end
686
687local Pass = true;
688local Distance = 0;
689
690if Player ~= LocalPlayer and Player.Character then
691if not Options.ShowTeam.Value and Player.TeamColor == LocalPlayer.TeamColor then
692Pass = false;
693end
694
695local Head = Player.Character:FindFirstChild'Head';
696
697if Pass and Player.Character and Head then
698Distance = (Camera.CFrame.p - Head.Position).magnitude;
699if Options.VisCheck.Value then
700Pass = CheckRay(Player, Distance, Camera.CFrame.p, (Head.Position - Camera.CFrame.p).unit);
701end
702if Distance > Options.MaxDistance.Value then
703Pass = false;
704end
705end
706else
707Pass = false;
708end
709
710return Pass, Distance;
711end
712
713function UpdatePlayerData()
714if (tick() - LastRefresh) > (Options.RefreshRate.Value / 1000) then
715LastRefresh = tick();
716for i, v in pairs(Players:GetPlayers()) do
717local Data = shared.PlayerData[v.Name] or { Instances = {} };
718
719Data.Instances['Box'] = Data.Instances['Box'] or LineBox:Create{Thickness = 3};
720Data.Instances['Tracer'] = Data.Instances['Tracer'] or NewDrawing'Line'{
721Transparency = 1;
722Thickness = 2;
723}
724Data.Instances['HeadDot'] = Data.Instances['HeadDot'] or NewDrawing'Circle'{
725Filled = true;
726NumSides = 30;
727}
728Data.Instances['NameTag'] = Data.Instances['NameTag'] or NewDrawing'Text'{
729Size = Options.TextSize.Value;
730Center = true;
731Outline = Options.TextOutline.Value;
732Visible = true;
733};
734Data.Instances['DistanceHealthTag'] = Data.Instances['DistanceHealthTag'] or NewDrawing'Text'{
735Size = Options.TextSize.Value - 1;
736Center = true;
737Outline = Options.TextOutline.Value;
738Visible = true;
739};
740
741local NameTag = Data.Instances['NameTag'];
742local DistanceTag = Data.Instances['DistanceHealthTag'];
743local Tracer = Data.Instances['Tracer'];
744local HeadDot = Data.Instances['HeadDot'];
745local Box = Data.Instances['Box'];
746
747local Pass, Distance = CheckPlayer(v);
748
749if Pass and v.Character then
750Data.LastUpdate = tick();
751local Humanoid = v.Character:FindFirstChildOfClass'Humanoid';
752local Head = v.Character:FindFirstChild'Head';
753local HumanoidRootPart = v.Character:FindFirstChild'HumanoidRootPart';
754if v.Character ~= nil and Head then
755local ScreenPosition, Vis = Camera:WorldToViewportPoint(Head.Position);
756if Vis then
757local Color = v.TeamColor == LocalPlayer.TeamColor and Green or Red;
758
759local ScreenPositionUpper = Camera:WorldToViewportPoint(Head.CFrame * CFrame.new(0, Head.Size.Y, 0).p);
760local Scale = Head.Size.Y / 2;
761
762if Options.ShowName.Value then
763NameTag.Visible = true;
764NameTag.Text = v.Name;
765NameTag.Size = Options.TextSize.Value;
766NameTag.Outline = Options.TextOutline.Value;
767NameTag.Position = Vector2.new(ScreenPositionUpper.X, ScreenPositionUpper.Y);
768NameTag.Color = Color;
769if Drawing.Fonts then -- CURRENTLY SYNAPSE ONLY :MEGAHOLY:
770NameTag.Font = Drawing.Fonts.UI;
771end
772else
773NameTag.Visible = false;
774end
775if Options.ShowDistance.Value or Options.ShowHealth.Value then
776DistanceTag.Visible = true;
777DistanceTag.Size = Options.TextSize.Value - 1;
778DistanceTag.Outline = Options.TextOutline.Value;
779DistanceTag.Color = Color3.new(1, 1, 1);
780if Drawing.Fonts then -- CURRENTLY SYNAPSE ONLY :MEGAHOLY:
781NameTag.Font = Drawing.Fonts.UI;
782end
783
784local Str = '';
785
786if Options.ShowDistance.Value then
787Str = Str .. Format('[%d] ', Distance);
788end
789if Options.ShowHealth.Value and Humanoid then
790Str = Str .. Format('[%d/100]', Humanoid.Health / Humanoid.MaxHealth * 100);
791end
792
793DistanceTag.Text = Str;
794DistanceTag.Position = Vector2.new(ScreenPositionUpper.X, ScreenPositionUpper.Y) + Vector2.new(0, NameTag.Size);
795else
796DistanceTag.Visible = false;
797end
798if Options.ShowDot.Value then
799local Top = Camera:WorldToViewportPoint((Head.CFrame * CFrame.new(0, Scale, 0)).p);
800local Bottom = Camera:WorldToViewportPoint((Head.CFrame * CFrame.new(0, -Scale, 0)).p);
801local Radius = (Top - Bottom).y;
802
803HeadDot.Visible = true;
804HeadDot.Color = Color;
805HeadDot.Position = Vector2.new(ScreenPosition.X, ScreenPosition.Y);
806HeadDot.Radius = Radius;
807else
808HeadDot.Visible = false;
809end
810if Options.ShowTracers.Value then
811Tracer.Visible = true;
812Tracer.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y);
813Tracer.To = Vector2.new(ScreenPosition.X, ScreenPosition.Y);
814Tracer.Color = Color;
815else
816Tracer.Visible = false;
817end
818if Options.ShowBoxes.Value and HumanoidRootPart then
819Box:Update(HumanoidRootPart.CFrame, Vector3.new(2, 3, 0) * (Scale * 2), Color);
820else
821Box:SetVisible(false);
822end
823else
824NameTag.Visible = false;
825DistanceTag.Visible = false;
826Tracer.Visible = false;
827HeadDot.Visible = false;
828
829Box:SetVisible(false);
830end
831end
832else
833NameTag.Visible = false;
834DistanceTag.Visible = false;
835Tracer.Visible = false;
836HeadDot.Visible = false;
837
838Box:SetVisible(false);
839end
840
841shared.PlayerData[v.Name] = Data;
842end
843end
844end
845
846function Update()
847for i, v in pairs(shared.PlayerData) do
848if not Players:FindFirstChild(tostring(i)) then
849GetTableData(v.Instances)(function(i, obj)
850obj.Visible = false;
851obj:Remove();
852v.Instances[i] = nil;
853end)
854shared.PlayerData[i] = nil;
855end
856end
857
858local CX = Menu:GetInstance'CrosshairX';
859local CY = Menu:GetInstance'CrosshairY';
860if Options.Crosshair.Value then
861CX.Visible = true;
862CY.Visible = true;
863
864CX.To = Vector2.new((Camera.ViewportSize.X / 2) - 8, (Camera.ViewportSize.Y / 2));
865CX.From = Vector2.new((Camera.ViewportSize.X / 2) + 8, (Camera.ViewportSize.Y / 2));
866CY.To = Vector2.new((Camera.ViewportSize.X / 2), (Camera.ViewportSize.Y / 2) - 8);
867CY.From = Vector2.new((Camera.ViewportSize.X / 2), (Camera.ViewportSize.Y / 2) + 8);
868else
869CX.Visible = false;
870CY.Visible = false;
871end
872
873if Options.MenuOpen.Value and MenuLoaded then
874local MLocation = GetMouseLocation();
875shared.MenuDrawingData.Instances.Main.Color = Color3.fromHSV(tick() * 24 % 255/255, 1, 1);
876local MainInstance = Menu:GetInstance'Main';
877local Values = {
878MainInstance.Position.X;
879MainInstance.Position.Y;
880MainInstance.Position.X + MainInstance.Size.X;
881MainInstance.Position.Y + MainInstance.Size.Y;
882};
883if MainInstance and MouseHoveringOver(Values) then
884Debounce.CursorVis = true;
885-- GUIService:SetMenuIsOpen(true);
886Menu:UpdateMenuInstance'Cursor1'{
887Visible = true;
888From = Vector2.new(MLocation.x, MLocation.y);
889To = Vector2.new(MLocation.x + 5, MLocation.y + 6);
890}
891Menu:UpdateMenuInstance'Cursor2'{
892Visible = true;
893From = Vector2.new(MLocation.x, MLocation.y);
894To = Vector2.new(MLocation.x, MLocation.y + 8);
895}
896Menu:UpdateMenuInstance'Cursor3'{
897Visible = true;
898From = Vector2.new(MLocation.x, MLocation.y + 6);
899To = Vector2.new(MLocation.x + 5, MLocation.y + 5);
900}
901else
902if Debounce.CursorVis then
903Debounce.CursorVis = false;
904-- GUIService:SetMenuIsOpen(false);
905Menu:UpdateMenuInstance'Cursor1'{Visible = false};
906Menu:UpdateMenuInstance'Cursor2'{Visible = false};
907Menu:UpdateMenuInstance'Cursor3'{Visible = false};
908end
909end
910if MouseHeld then
911if Dragging then
912DraggingWhat.Slider.Position = Vector2.new(math.clamp(MLocation.X, DraggingWhat.Line.From.X, DraggingWhat.Line.To.X), DraggingWhat.Slider.Position.Y);
913local Percent = (DraggingWhat.Slider.Position.X - DraggingWhat.Line.From.X) / ((DraggingWhat.Line.To.X - DraggingWhat.Line.From.X));
914local Value = CalculateValue(DraggingWhat.Min, DraggingWhat.Max, Percent);
915DraggingWhat.Option(Value);
916elseif DraggingUI then
917Debounce.UIDrag = true;
918local Main = Menu:GetInstance'Main';
919local MousePos = GetMouseLocation();
920Main.Position = MousePos + DragOffset;
921end
922else
923Dragging = false;
924if DraggingUI and Debounce.UIDrag then
925Debounce.UIDrag = false;
926DraggingUI = false;
927CreateMenu(Menu:GetInstance'Main'.Position);
928end
929end
930if not Debounce.Menu then
931Debounce.Menu = true;
932ToggleMenu();
933end
934elseif Debounce.Menu and not Options.MenuOpen.Value then
935Debounce.Menu = false;
936ToggleMenu();
937end
938end
939
940RunService:UnbindFromRenderStep(GetDataName);
941RunService:UnbindFromRenderStep(UpdateName);
942
943RunService:BindToRenderStep(GetDataName, 1, UpdatePlayerData);
944RunService:BindToRenderStep(UpdateName, 1, Update);
945
946CreateGui = function()
947local NewGuiPart1 = Instance.new("ScreenGui")
948NewGuiPart1.Name = "GUI"
949NewGuiPart1.Parent = game.CoreGui
950------- FRAME
951local NewGuiPart2 = Instance.new("Frame")
952NewGuiPart2.BackgroundTransparency = 0.5
953NewGuiPart2.BorderColor3 = Color3.new(0, 0, 0)
954NewGuiPart2.BorderSizePixel = 3
955NewGuiPart2.Name = "CMDBar"
956NewGuiPart2.Position = UDim2.new(1, -350, 1, -150)
957NewGuiPart2.Size = UDim2.new(0, 300, 0, 100)
958NewGuiPart2.Draggable = true
959NewGuiPart2.Parent = NewGuiPart1
960------- CMD BAR
961local NewGuiPart3 = Instance.new("TextBox")
962NewGuiPart3.BackgroundColor3 = Color3.new(0.435294, 0.435294, 0.435294)
963NewGuiPart3.BackgroundTransparency = 0.5
964NewGuiPart3.Name = "Bar"
965NewGuiPart3.Position = UDim2.new(0, 0, 0, 50)
966NewGuiPart3.Size = UDim2.new(1, 0, 0, 50)
967NewGuiPart3.FontSize = Enum.FontSize.Size14
968NewGuiPart3.Text = ":) i love you nick"
969NewGuiPart3.TextColor3 = Color3.new(1, 1, 1)
970NewGuiPart3.Parent = NewGuiPart2
971NewGuiPart3.TextWrapped = true
972------- LABEL
973local NewGuiPart4 = Instance.new("TextLabel")
974NewGuiPart4.BackgroundColor3 = Color3.new(0.435294, 0.435294, 0.435294)
975NewGuiPart4.BackgroundTransparency = 0.5
976NewGuiPart4.Name = "Label"
977NewGuiPart4.Size = UDim2.new(1, 0, 0, 50)
978NewGuiPart4.Font = Enum.Font.SourceSansBold
979NewGuiPart4.FontSize = Enum.FontSize.Size24
980NewGuiPart4.Text = "nick is sexy fam ;))"
981NewGuiPart4.TextColor3 = Color3.new(1, 1, 1)
982NewGuiPart4.TextWrapped = true
983NewGuiPart4.Parent = NewGuiPart2
984------- CROSS BUTTON
985local NewGuiPart5 = Instance.new("TextButton")
986NewGuiPart5.Active = true
987NewGuiPart5.BackgroundColor3 = Color3.new(1, 0, 0)
988NewGuiPart5.BackgroundTransparency = 0.5
989NewGuiPart5.BorderColor3 = Color3.new(0, 0, 0)
990NewGuiPart5.BorderSizePixel = 3
991NewGuiPart5.Name = "Cross"
992NewGuiPart5.Position = UDim2.new(1, 3, 0, 0)
993NewGuiPart5.Selectable = true
994NewGuiPart5.Size = UDim2.new(0, 25, 1, 0)
995NewGuiPart5.Style = Enum.ButtonStyle.Custom
996NewGuiPart5.Font = Enum.Font.SourceSansBold
997NewGuiPart5.FontSize = Enum.FontSize.Size24
998NewGuiPart5.Text = "X"
999NewGuiPart5.TextColor3 = Color3.new(1, 1, 1)
1000NewGuiPart5.Parent = NewGuiPart2
1001------- SCRIPT 1
1002NewGuiPart3.FocusLost:connect(function(active)
1003if active then
1004local text = NewGuiPart3.Text
1005game.Players:Chat(text)
1006end
1007end)
1008------- SCRIPT 2
1009NewGuiPart5.MouseButton1Click:connect(function()
1010NewGuiPart1:Destroy()
1011end)
1012end
1013
1014CreateGui()
1015local Player = game.Players.LocalPlayer
1016
1017Player.Chatted:connect(function(cht)
1018 if cht:match("god") then
1019local Event = workspace.Events.ChangeHealth:FireServer("inf")
1020Event:FireServer("inf")
1021elseif cht:match("drop") then
1022for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
1023 game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
1024 v.Parent = workspace
1025 end
1026elseif cht:match("esp") then
1027Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game:GetService("CoreGui")}
1028
1029local enabledesp = false
1030
1031function CreateESP(plr)
1032
1033 if plr ~= nil then
1034
1035 local GetChar = plr.Character
1036 if not GetChar then return end
1037
1038 local GetHead do
1039
1040 repeat wait() until GetChar:FindFirstChild("Head")
1041
1042 end
1043 GetHead = GetChar.Head
1044
1045 local bb = Instance.new("BillboardGui", Important.CoreGui)
1046 bb.Adornee = GetHead
1047 bb.ExtentsOffset = Vector3.new(0, 1, 0)
1048 bb.AlwaysOnTop = true
1049 bb.Size = UDim2.new(0, 5, 0, 5)
1050 bb.StudsOffset = Vector3.new(0, 3, 0)
1051 bb.Name = "ESPPLAYER" .. plr.Name
1052
1053 local displayframe = Instance.new("Frame", bb)
1054 displayframe.ZIndex = 10
1055 displayframe.BackgroundTransparency = 1
1056 displayframe.Size = UDim2.new(1,0,1,0)
1057
1058 local name = Instance.new("TextLabel", displayframe)
1059 name.Name = "Name"
1060 name.ZIndex = 10
1061 name.Text = plr.Name
1062 name.Visible = true
1063 name.TextColor3 = Color3.new(212,244,188)
1064 name.BackgroundTransparency = 1
1065 name.Size = UDim2.new(1,0,10,0)
1066 name.Font = Enum.Font.SourceSansLight
1067 name.TextSize = 20
1068 name.TextStrokeTransparency = .5
1069
1070 end
1071
1072end
1073
1074
1075 for i,v in pairs(Important.Players:GetChildren()) do
1076 if game.GameId == 1320186298 then return end
1077 CreateESP(v)
1078
1079 end
1080elseif cht:match("gun") then
1081game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1082game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1083game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1084game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1085game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1086game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1087game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1088game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1089game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1090game.Workspace.Events.GiveGear:FireServer(game.ReplicatedStorage.SC.Dete["Golden Glory"])
1091elseif cht:match("knife") then
1092workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1093workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1094workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1095workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1096workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1097workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1098workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1099workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1100workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1101workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Pocket Knife"].Gear)
1102elseif cht:match("taser") then
1103workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1104workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1105workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1106workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1107workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1108workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1109workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1110workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1111workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1112workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Taser"].Gear)
1113elseif cht:match("morph") then
1114workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1115workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1116workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1117workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1118workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1119workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1120workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1121workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1122workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1123workspace.Events.GiveGear:FireServer(game:GetService("ReplicatedStorage").Store.Sabils["Morphine"].Gear)
1124elseif cht:match("anarchist") then
1125-- penguin0616/BinaryScript was here and fixed most of this cuz alex and light be trippin too hard
1126
1127game.Lighting.TimeOfDay = "00:00:00"
1128wait(0.5)
1129
1130local NOCLIP = false
1131local SWIM = false
1132
1133game:GetService('RunService').Stepped:connect(function()
1134if NOCLIP then
1135game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
1136elseif SWIM then
1137game.Players.LocalPlayer.Character.Humanoid:ChangeState(4)
1138end
1139end)
1140
1141local gPlayers = game:GetService("Players")
1142local admin = gPlayers.LocalPlayer.Name
1143local bannedplyrs = {''}
1144
1145local admins = {'oLukeSniper','Zyskee','CasingChaos','Scarperino','Humacate','GoDieKThxBye','iPanik','melodyxxo','zyqt','l5cy','cambaska','angieluvr','liIwindexx','shawvtys','5hibil','solarsteic','csyresmith','l_vf','some_years','Humacate','iRoblox101sworder','Mittii','trapaks','upIean'}
1146
1147local services={}
1148local cmds={}
1149local std={}
1150
1151local serverLocked = false
1152
1153function FIX_LIGHTING()
1154game.Lighting.Ambient = Color3.new(0.5, 0.5, 0.5)
1155game.Lighting.Brightness = 1
1156game.Lighting.GlobalShadows = true
1157game.Lighting.Outlines = false
1158game.Lighting.TimeOfDay = 14
1159game.Lighting.FogEnd = 100000
1160end
1161
1162services.players=gPlayers
1163services.lighting=game:GetService('Lighting')
1164services.workspace=game:GetService('Workspace')
1165services.events = {}
1166local user = gPlayers.LocalPlayer
1167
1168local cmdprefix='!'
1169local scriptprefix='/'
1170local split=" "
1171
1172
1173updateevents=function()
1174for i,v in pairs(services.events) do services.events:remove(i) v:disconnect() end
1175for i,v in pairs(gPlayers:players())do
1176local ev = v.Chatted:connect(function(msg) do_exec(msg,v) end)
1177services.events[#services.events+1] = ev
1178end
1179end
1180
1181std.inTable=function(tbl,val)
1182if tbl==nil then return false end
1183
1184for _,v in pairs(tbl)do
1185if v==val then return true end
1186end
1187return false
1188end
1189
1190std.out=function(str)
1191print(str)
1192end
1193
1194std.list=function(tbl) --turns table into list with commas
1195local str=''
1196for i,v in pairs(tbl)do
1197str=str..tostring(v)
1198if i~=#tbl then str=str..', ' end
1199end
1200return str
1201end
1202
1203std.endat=function(str,val)
1204local z=str:find(val)
1205if z then
1206return str:sub(0,z-string.len(val)),true
1207else
1208return str,false
1209end
1210end
1211
1212std.first=function(str) return str:sub(1,1) end
1213
1214isAdmin=function(name)
1215if name==admin then
1216return true
1217elseif admins[name]==true then
1218return true
1219end
1220return false
1221end
1222
1223gPlayers.PlayerAdded:connect(function(player)
1224for i,v in pairs(bannedplyrs) do
1225print(v.name)
1226end
1227end)
1228
1229local exec=function(str)
1230spawn(function()
1231local script, loaderr = loadstring(str)
1232if not script then
1233error(loaderr)
1234else
1235script()
1236end
1237end)
1238end
1239
1240local findCmd=function(cmd_name)
1241for i,v in pairs(cmds)do
1242if v.NAME:lower()==cmd_name:lower() or std.inTable(v.ALIAS,cmd_name:lower())then
1243return v
1244end
1245end
1246end
1247
1248local getCmd=function(msg)
1249local cmd,hassplit=std.endat(msg:lower(),split)
1250if hassplit then
1251return {cmd,true}
1252else
1253return {cmd,false}
1254end
1255end
1256
1257local getprfx=function(strn)
1258if strn:sub(1,string.len(cmdprefix))==cmdprefix then return{'cmd',string.len(cmdprefix)+1}
1259elseif strn:sub(1,string.len(scriptprefix))==scriptprefix then return{'exec',string.len(scriptprefix)+1}
1260end return
1261end
1262
1263local getArgs=function(str)
1264local args={}
1265local new_arg=nil
1266local hassplit=nil
1267local s=str
1268repeat
1269new_arg,hassplit=std.endat(s:lower(),split)
1270if new_arg~='' then
1271args[#args+1]=new_arg
1272s=s:sub(string.len(new_arg)+string.len(split)+1)
1273end
1274until hassplit==false
1275return args
1276end
1277
1278local function execCmd(str, plr)
1279local s_cmd
1280local a
1281local cmd
1282s_cmd = getCmd(str) --separate command from string using split {command name,arg bool (for arg system)}
1283cmd = findCmd(s_cmd[1]) --get command object {NAME,DESC,{ALIASES},function(args)}
1284if cmd == nil then return end
1285a = str:sub(string.len(s_cmd[1]) + string.len(split) + 1)--start string "a" after command and split
1286local args=getArgs(a)--gets us a nice table of arguments
1287
1288pcall(function()
1289cmd.FUNC(args, plr)
1290end)
1291end
1292
1293function do_exec(str,plr)
1294if not isAdmin(plr.Name)then return end
1295
1296str=str:gsub('/e ','')--remove "/e " the easy way!
1297
1298local t=getprfx(str)
1299if t==nil then return end
1300str=str:sub(t[2])
1301if t[1]=='exec' then
1302exec(str)
1303elseif t[1]=='cmd' then
1304execCmd(str, plr)
1305end
1306end
1307
1308updateevents()
1309_G.exec_cmd = execCmd
1310--game.Players.LocalPlayer.Chatted:connect(doexec)
1311
1312local _char=function(plr_name)
1313for i,v in pairs(game.Players:GetChildren())do
1314if v:IsA'Player'then
1315if v.Name==plr_name then return v.Character end
1316end
1317end
1318return
1319end
1320
1321local _plr=function(plr_name)
1322for i,v in pairs(game.Players:GetChildren())do
1323if v:IsA'Player'then
1324if v.Name==plr_name then return v end
1325end
1326end
1327return
1328end
1329
1330function addcmd(name,desc,alias,func)
1331cmds[#cmds+1]=
1332{
1333NAME=name;
1334DESC=desc;
1335ALIAS=alias;
1336FUNC=func;
1337}
1338end
1339
1340local function getPlayer(name)
1341local nameTable = {}
1342name=name:lower()
1343if name == "me" then
1344return {admin}
1345elseif name == "others" then
1346for i,v in pairs(gPlayers:GetChildren()) do
1347if v:IsA'Player'then
1348if v.Name~=admin then
1349nameTable[#nameTable+1]=v.Name
1350end
1351end
1352end
1353elseif name == "all" then
1354for i,v in pairs(gPlayers:GetChildren()) do
1355if v:IsA'Player'then
1356nameTable[#nameTable+1]=v.Name
1357end
1358end
1359else
1360for i,v in pairs(gPlayers:GetChildren()) do
1361local lname = v.Name:lower()
1362local i,j = lname:find(name)
1363if i == 1 then
1364return {v.Name}
1365end
1366end
1367end
1368return nameTable
1369end
1370
1371-- commands --
1372addcmd('device','Device persons on',{},
1373function(args)
1374local players=getPlayer(args[1])
1375for i,v in pairs(players) do
1376wait(0.5)
1377game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Checking device..", "All")
1378wait(1.8)
1379game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(game.Players[v].OsPlatform, "All")
1380end
1381end)
1382
1383addcmd('ws','change a players walkspeed',{},
1384function(args)
1385local players=getPlayer(args[1])
1386if not args[1]or not args[2]then return end
1387local num=args[2]
1388for i,v in pairs(players) do
1389if _char(v):FindFirstChild("Humanoid") then
1390_char(v).Humanoid.WalkSpeed=tonumber(num)
1391end
1392end
1393end)
1394
1395addcmd('crash','crashes the server',{},
1396function(args)
1397local part = workspace.Arena--game.Players.LocalPlayer.Character.Torso
1398local cf = CFrame.new(part.Position)
1399local size = Vector3.new(999, 999, 999)
1400local color = BrickColor.new("Medium stone grey")
1401game:service'RunService'.RenderStepped:connect(function()
1402wait()
1403game.ReplicatedStorage.Remotes.ServerGun:FireServer(cf, size, color, part)
1404end)
1405end)
1406
1407addcmd('kill','kill ppl ezpz',{},
1408function(args)
1409local players=getPlayer(args[1])
1410for i,v in pairs(players) do
1411game.Players.LocalPlayer.Backpack.M9.Parent=game.Workspace[game.Players.LocalPlayer.Name]
1412local A_1 = "xHyf86e"
1413local A_2 = 30
1414local A_3 = game:GetService("Workspace")[v].Humanoid
1415local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1416local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1417Event:FireServer(A_1, A_2, A_3, A_4)
1418local A_1 = "xHyf86e"
1419local A_2 = 30
1420local A_3 = game:GetService("Workspace")[v].Humanoid
1421local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1422local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1423Event:FireServer(A_1, A_2, A_3, A_4)
1424local A_1 = "xHyf86e"
1425local A_2 = 30
1426local A_3 = game:GetService("Workspace")[v].Humanoid
1427local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1428local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1429Event:FireServer(A_1, A_2, A_3, A_4)
1430local A_1 = "xHyf86e"
1431local A_2 = 30
1432local A_3 = game:GetService("Workspace")[v].Humanoid
1433local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1434local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1435Event:FireServer(A_1, A_2, A_3, A_4)
1436local A_1 = "xHyf86e"
1437local A_2 = 30
1438local A_3 = game:GetService("Workspace")[v].Humanoid
1439local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1440local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1441Event:FireServer(A_1, A_2, A_3, A_4)
1442local A_1 = "xHyf86e"
1443local A_2 = 30
1444local A_3 = game:GetService("Workspace")[v].Humanoid
1445local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1446local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1447Event:FireServer(A_1, A_2, A_3, A_4)
1448game.Workspace[game.Players.LocalPlayer.Name].M9.Parent = game.Players.LocalPlayer.Backpack
1449end
1450end)
1451
1452addcmd('damage','damage a person',{},
1453function(args)
1454local players=getPlayer(args[1])
1455for i,v in pairs(players) do
1456game.Players.LocalPlayer.Backpack.M9.Parent=game.Workspace[game.Players.LocalPlayer.Name]
1457local A_1 = "xHyf86e"
1458local A_2 = 30
1459local A_3 = game:GetService("Workspace")[v].Humanoid
1460local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].M9
1461local Event = game:GetService("ReplicatedStorage").Remotes.Damage
1462Event:FireServer(A_1, A_2, A_3, A_4)
1463game.Workspace[game.Players.LocalPlayer.Name].M9.Parent = game.Players.LocalPlayer.Backpack
1464end
1465end)
1466
1467addcmd('save','Saves your tools',nil,
1468function(args)
1469for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
1470if (v:IsA("Tool")) then
1471v.Parent = game.Players.LocalPlayer
1472end
1473end
1474end)
1475
1476addcmd('aimbot','gives u a1mb0t',nil,
1477function(args)
1478PLAYER = game.Players.LocalPlayer
1479MOUSE = PLAYER:GetMouse()
1480CC = game.Workspace.CurrentCamera
1481
1482ENABLED = false
1483ESP_ENABLED = false
1484
1485_G.FREE_FOR_ALL = true
1486
1487_G.BIND = 50
1488_G.ESP_BIND = 52
1489_G.CHANGE_AIM = 'q'
1490
1491_G.AIM_AT = 'Head'
1492
1493wait(1)
1494
1495function GetNearestPlayerToMouse()
1496 local PLAYERS = {}
1497 local PLAYER_HOLD = {}
1498 local DISTANCES = {}
1499 for i, v in pairs(game.Players:GetPlayers()) do
1500 if v ~= PLAYER then
1501 table.insert(PLAYERS, v)
1502 end
1503 end
1504 for i, v in pairs(PLAYERS) do
1505 if _G.FREE_FOR_ALL == false then
1506 if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
1507 local AIM = v.Character:FindFirstChild(_G.AIM_AT)
1508 if AIM ~= nil then
1509 local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
1510 local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
1511 local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
1512 local DIFF = math.floor((POS - AIM.Position).magnitude)
1513 PLAYER_HOLD[v.Name .. i] = {}
1514 PLAYER_HOLD[v.Name .. i].dist = DISTANCE
1515 PLAYER_HOLD[v.Name .. i].plr = v
1516 PLAYER_HOLD[v.Name .. i].diff = DIFF
1517 table.insert(DISTANCES, DIFF)
1518 end
1519 end
1520 elseif _G.FREE_FOR_ALL == true then
1521 local AIM = v.Character:FindFirstChild(_G.AIM_AT)
1522 if AIM ~= nil then
1523 local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
1524 local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
1525 local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
1526 local DIFF = math.floor((POS - AIM.Position).magnitude)
1527 PLAYER_HOLD[v.Name .. i] = {}
1528 PLAYER_HOLD[v.Name .. i].dist = DISTANCE
1529 PLAYER_HOLD[v.Name .. i].plr = v
1530 PLAYER_HOLD[v.Name .. i].diff = DIFF
1531 table.insert(DISTANCES, DIFF)
1532 end
1533 end
1534 end
1535
1536 if unpack(DISTANCES) == nil then
1537 return false
1538 end
1539
1540 local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
1541 if L_DISTANCE > 20 then
1542 return false
1543 end
1544
1545 for i, v in pairs(PLAYER_HOLD) do
1546 if v.diff == L_DISTANCE then
1547 return v.plr
1548 end
1549 end
1550 return false
1551end
1552
1553GUI_MAIN = Instance.new('ScreenGui', game.CoreGui)
1554GUI_TARGET = Instance.new('TextLabel', GUI_MAIN)
1555GUI_AIM_AT = Instance.new('TextLabel', GUI_MAIN)
1556
1557GUI_MAIN.Name = 'AIMBOT'
1558
1559GUI_TARGET.Size = UDim2.new(0,200,0,30)
1560GUI_TARGET.BackgroundTransparency = 0.5
1561GUI_TARGET.BackgroundColor = BrickColor.new('Fossil')
1562GUI_TARGET.BorderSizePixel = 0
1563GUI_TARGET.Position = UDim2.new(0.5,-100,0,0)
1564GUI_TARGET.Text = 'AIMBOT : OFF'
1565GUI_TARGET.TextColor3 = Color3.new(1,1,1)
1566GUI_TARGET.TextStrokeTransparency = 1
1567GUI_TARGET.TextWrapped = true
1568GUI_TARGET.FontSize = 'Size24'
1569GUI_TARGET.Font = 'SourceSansBold'
1570
1571GUI_AIM_AT.Size = UDim2.new(0,200,0,20)
1572GUI_AIM_AT.BackgroundTransparency = 0.5
1573GUI_AIM_AT.BackgroundColor = BrickColor.new('Fossil')
1574GUI_AIM_AT.BorderSizePixel = 0
1575GUI_AIM_AT.Position = UDim2.new(0.5,-100,0,30)
1576GUI_AIM_AT.Text = 'AIMING : HEAD'
1577GUI_AIM_AT.TextColor3 = Color3.new(1,1,1)
1578GUI_AIM_AT.TextStrokeTransparency = 1
1579GUI_AIM_AT.TextWrapped = true
1580GUI_AIM_AT.FontSize = 'Size18'
1581GUI_AIM_AT.Font = 'SourceSansBold'
1582
1583local TRACK = false
1584
1585function CREATE(BASE, TEAM)
1586 local ESP_MAIN = Instance.new('BillboardGui', PLAYER.PlayerGui)
1587 local ESP_DOT = Instance.new('Frame', ESP_MAIN)
1588 local ESP_NAME = Instance.new('TextLabel', ESP_MAIN)
1589
1590 ESP_MAIN.Name = 'ESP'
1591 ESP_MAIN.Adornee = BASE
1592 ESP_MAIN.AlwaysOnTop = true
1593 ESP_MAIN.ExtentsOffset = Vector3.new(0, 1, 0)
1594 ESP_MAIN.Size = UDim2.new(0, 5, 0, 5)
1595
1596 ESP_DOT.Name = 'DOT'
1597 ESP_DOT.BackgroundColor = BrickColor.new('Bright red')
1598 ESP_DOT.BackgroundTransparency = 0.3
1599 ESP_DOT.BorderSizePixel = 0
1600 ESP_DOT.Position = UDim2.new(-0.5, 0, -0.5, 0)
1601 ESP_DOT.Size = UDim2.new(2, 0, 2, 0)
1602 ESP_DOT.Visible = true
1603 ESP_DOT.ZIndex = 10
1604
1605 ESP_NAME.Name = 'NAME'
1606 ESP_NAME.BackgroundColor3 = Color3.new(255, 255, 255)
1607 ESP_NAME.BackgroundTransparency = 1
1608 ESP_NAME.BorderSizePixel = 0
1609 ESP_NAME.Position = UDim2.new(0, 0, 0, -40)
1610 ESP_NAME.Size = UDim2.new(1, 0, 10, 0)
1611 ESP_NAME.Visible = true
1612 ESP_NAME.ZIndex = 10
1613 ESP_NAME.Font = 'ArialBold'
1614 ESP_NAME.FontSize = 'Size14'
1615 ESP_NAME.Text = BASE.Parent.Name:upper()
1616 ESP_NAME.TextColor = BrickColor.new('Bright red')
1617end
1618
1619function CLEAR()
1620 for _,v in pairs(PLAYER.PlayerGui:children()) do
1621 if v.Name == 'ESP' and v:IsA('BillboardGui') then
1622 v:Destroy()
1623 end
1624 end
1625end
1626
1627function FIND()
1628 CLEAR()
1629 TRACK = true
1630 spawn(function()
1631 while wait() do
1632 if TRACK then
1633 CLEAR()
1634 for i,v in pairs(game.Players:GetChildren()) do
1635 if v.Character and v.Character:FindFirstChild('Head') then
1636 if _G.FREE_FOR_ALL == false then
1637 if v.TeamColor ~= PLAYER.TeamColor then
1638 if v.Character:FindFirstChild('Head') then
1639 CREATE(v.Character.Head, true)
1640 end
1641 end
1642 else
1643 if v.Character:FindFirstChild('Head') then
1644 CREATE(v.Character.Head, true)
1645 end
1646 end
1647 end
1648 end
1649 end
1650 end
1651 wait(1)
1652 end)
1653end
1654
1655MOUSE.KeyDown:connect(function(KEY)
1656 KEY = KEY:lower():byte()
1657 if KEY == _G.BIND then
1658 ENABLED = true
1659 end
1660end)
1661
1662MOUSE.KeyUp:connect(function(KEY)
1663 KEY = KEY:lower():byte()
1664 if KEY == _G.BIND then
1665 ENABLED = false
1666 end
1667end)
1668
1669MOUSE.KeyDown:connect(function(KEY)
1670 KEY = KEY:lower():byte()
1671 if KEY == _G.ESP_BIND then
1672 if ESP_ENABLED == false then
1673 FIND()
1674 ESP_ENABLED = true
1675 print('ESP : ON')
1676 elseif ESP_ENABLED == true then
1677 wait()
1678 CLEAR()
1679 TRACK = false
1680 ESP_ENABLED = false
1681 print('ESP : OFF')
1682 end
1683 end
1684end)
1685
1686MOUSE.KeyDown:connect(function(KEY)
1687 if KEY == _G.CHANGE_AIM then
1688 if _G.AIM_AT == 'Head' then
1689 _G.AIM_AT = 'Torso'
1690 GUI_AIM_AT.Text = 'AIMING : TORSO'
1691 elseif _G.AIM_AT == 'Torso' then
1692 _G.AIM_AT = 'Head'
1693 GUI_AIM_AT.Text = 'AIMING : HEAD'
1694 end
1695 end
1696end)
1697
1698game:GetService('RunService').RenderStepped:connect(function()
1699 if ENABLED then
1700 local TARGET = GetNearestPlayerToMouse()
1701 if (TARGET ~= false) then
1702 local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
1703 if AIM then
1704 CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
1705 end
1706 GUI_TARGET.Text = 'AIMBOT : '.. TARGET.Name:sub(1, 5)
1707 else
1708 GUI_TARGET.Text = 'AIMBOT : OFF'
1709 end
1710 end
1711end)
1712
1713repeat
1714 wait()
1715 if ESP_ENABLED == true then
1716 FIND()
1717 end
1718until ESP_ENABLED == false
1719end)
1720
1721addcmd('fly','makes u fly',nil,
1722function(args)
1723mouse=game.Players.LocalPlayer:GetMouse''
1724localplayer=game.Players.LocalPlayer
1725game.Players.LocalPlayer.Character:WaitForChild("Torso")
1726 local torso = game.Players.LocalPlayer.Character.Torso
1727 local flying = true
1728 local speed=0
1729 local keys={a=false,d=false,w=false,s=false}
1730 local e1
1731 local e2
1732 local function start()
1733 local pos = Instance.new("BodyPosition",torso)
1734 local gyro = Instance.new("BodyGyro",torso)
1735 pos.Name="EPIXPOS"
1736 pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
1737 pos.position = torso.Position
1738 gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
1739 gyro.cframe = torso.CFrame
1740 repeat
1741 wait()
1742 localplayer.Character.Humanoid.PlatformStand=true
1743 local new=gyro.cframe - gyro.cframe.p + pos.position
1744 if not keys.w and not keys.s and not keys.a and not keys.d then
1745 speed=1
1746 end
1747 if keys.w then
1748 new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
1749 speed=speed+0.01
1750 end
1751 if keys.s then
1752 new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
1753 speed=speed+0.01
1754 end
1755 if keys.d then
1756 new = new * CFrame.new(speed,0,0)
1757 speed=speed+0.01
1758 end
1759 if keys.a then
1760 new = new * CFrame.new(-speed,0,0)
1761 speed=speed+0.01
1762 end
1763 if speed>5 then
1764 speed=5
1765 end
1766 pos.position=new.p
1767 if keys.w then
1768 gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
1769 elseif keys.s then
1770 gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
1771 else
1772 gyro.cframe = workspace.CurrentCamera.CoordinateFrame
1773 end
1774 until flying==false
1775 if gyro then gyro:Destroy() end
1776 if pos then pos:Destroy() end
1777 flying=false
1778 localplayer.Character.Humanoid.PlatformStand=false
1779 speed=0
1780 end
1781 e1=mouse.KeyDown:connect(function(key)
1782 if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
1783 if key=="w" then
1784 keys.w=true
1785 elseif key=="s" then
1786 keys.s=true
1787 elseif key=="a" then
1788 keys.a=true
1789 elseif key=="d" then
1790 keys.d=true
1791 elseif key=="e" then
1792 if flying==true then
1793 flying=false
1794 else
1795 flying=true
1796 start()
1797 end
1798 end
1799 end)
1800 e2=mouse.KeyUp:connect(function(key)
1801 if key=="w" then
1802 keys.w=false
1803 elseif key=="s" then
1804 keys.s=false
1805 elseif key=="a" then
1806 keys.a=false
1807 elseif key=="d" then
1808 keys.d=false
1809 end
1810 end)
1811 start()
1812end)
1813
1814addcmd('get','Recives your tools you saved',nil,
1815function(args)
1816for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
1817if (v:IsA("Tool")) then
1818v.Parent = game.Players.LocalPlayer.Backpack
1819end
1820end
1821end)
1822
1823addcmd('refresh','refresh your character',nil,
1824function(args)
1825NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
1826
1827game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
1828game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
1829wait(0.6)
1830game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1831wait(0.1)
1832game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1833wait(0.1)
1834game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1835wait(0.1)
1836game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1837wait(0.1)
1838game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1839wait(0.1)
1840game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1841wait(0.1)
1842game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1843wait(0.1)
1844game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1845wait(0.1)
1846game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1847wait(0.1)
1848game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1849wait(0.1)
1850game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1851wait(0.1)
1852game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1853wait(0.1)
1854game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
1855end)
1856
1857addcmd('nograv','Makes you jump higher /shrug',nil,
1858function(args)
1859game.Workspace.Gravity = 50
1860local c=Instance.new("ScreenGui",game.CoreGui)
1861local d=Instance.new("TextLabel",game.CoreGui.ScreenGui)c.Name="rawrXD"d.Name="memesXD"d.Parent=c;d.Active=true
1862d.BackgroundColor3=Color3.new(0.523529, 0.523529, 0.523529)d.BorderSizePixel=0;d.Draggable=true;d.Size=UDim2.new(0,300,0,70)
1863d.Text="Changed Gravity"d.TextSize=29
1864d.TextColor3=Color3.new(0.09, 0.08, 0.12)d.Position=UDim2.new(0,0,0,100)d.Transparency=1;wait()
1865d.Transparency=0.9;wait()d.Transparency=0.8;wait()d.Transparency=0.7;wait()
1866d.Transparency=0.6;wait()d.Transparency=0.4;wait()d.Transparency=0.3;wait()
1867d.Transparency=0.2;wait()d.Transparency=0;wait(2)d.Transparency=0.1;wait()
1868d.Transparency=0.2;wait()d.Transparency=0.3;wait()d.Transparency=0.4;wait()
1869d.Transparency=0.5;wait()d.Transparency=0.6;wait()d.Transparency=0.7;wait()
1870d.Transparency=0.8;wait()d.Transparency=0.9;wait()d.Transparency=1
1871game.CoreGui.rawrXD:remove()
1872end)
1873
1874addcmd('grav','Restore normal gravity',nil,
1875function(args)
1876game.Workspace.Gravity = 192
1877local c=Instance.new("ScreenGui",game.CoreGui)
1878local d=Instance.new("TextLabel",game.CoreGui.ScreenGui)c.Name="rawrXD"d.Name="memesXD"d.Parent=c;d.Active=true
1879d.BackgroundColor3=Color3.new(0.523529, 0.523529, 0.523529)d.BorderSizePixel=0;d.Draggable=true;d.Size=UDim2.new(0,300,0,70)
1880d.Text="Changed Gravity"d.TextSize=29
1881d.TextColor3=Color3.new(0.09, 0.08, 0.12)d.Position=UDim2.new(0,0,0,100)d.Transparency=1;wait()
1882d.Transparency=0.9;wait()d.Transparency=0.8;wait()d.Transparency=0.7;wait()
1883d.Transparency=0.6;wait()d.Transparency=0.4;wait()d.Transparency=0.3;wait()
1884d.Transparency=0.2;wait()d.Transparency=0;wait(2)d.Transparency=0.1;wait()
1885d.Transparency=0.2;wait()d.Transparency=0.3;wait()d.Transparency=0.4;wait()
1886d.Transparency=0.5;wait()d.Transparency=0.6;wait()d.Transparency=0.7;wait()
1887d.Transparency=0.8;wait()d.Transparency=0.9;wait()d.Transparency=1
1888game.CoreGui.rawrXD:remove()
1889end)
1890
1891addcmd('steal','steals a sword',{},
1892function(args)
1893local players=getPlayer(args[1])
1894for i,v in pairs(players) do
1895for i,v in pairs(game.Workspace[v]:GetChildren()) do
1896if v:IsA("Tool") then
1897v.Parent = game.Workspace[game.Players.LocalPlayer.Name]
1898end
1899end
1900end
1901end)
1902
1903
1904addcmd('m9','launches m9 hacc',nil,
1905function(args)
1906local UIS = game:GetService("UserInputService")
1907
1908local Player = game.Players.LocalPlayer
1909local Mouse = Player:GetMouse()
1910
1911
1912
1913local source = [[
1914function GetM9()
1915local m9 = game.Players.LocalPlayer.Backpack:FindFirstChild("M9")
1916if m9 then
1917return m9
1918else
1919return game.Players.LocalPlayer.Character:FindFirstChild("M9")
1920end
1921end
1922repeat wait() until GetM9().ClassName == "Tool"
1923
1924local Player = game.Players.LocalPlayer
1925local Mouse = Player:GetMouse()
1926local Character = game.Workspace:WaitForChild(Player.Name)
1927local Humanoid = Character:WaitForChild("Humanoid")
1928
1929
1930
1931
1932local Data = {
1933Damages = {
1934Head = 30,
1935Torso = 25,
1936Else = 20
1937},
1938FireRate = 1/1000,
1939ReloadTime = 0.1,
1940ClipSize = 10000,
1941Accuracy = 10,
1942NumBullets = 1,
1943FireMode = "Auto",
1944Range = 1000,
1945BarrelOffset = CFrame.new(0,.25,-.7)
1946}
1947
1948function F1R3(Human, dmg)
1949for i = 1, 5 do
1950game.ReplicatedStorage.Remotes.Damage:FireServer("xHyf86e", dmg, Human, GetM9())
1951end
1952end
1953
1954local Equipped = false
1955local Firing = false
1956local Reloading = false
1957local CanFire = true
1958local Ammo = Data["ClipSize"]
1959
1960local GunUI = script:WaitForChild("GunUI")
1961GunUI.AmmoBack.Ammo.Text = Ammo .. " / " .. Ammo
1962
1963local UIS = game:GetService("UserInputService")
1964
1965local GoldIDs = {
1966M9 = 316022948,
1967Scorpion = 316250295,
1968Shotgun = 317302030,
1969Sniper = 316598801,
1970["AK-47"] = 317301580,
1971["M-16"] = 317302215
1972}
1973
1974
1975game.ReplicatedStorage.Remotes.Goldify:FireServer(GetM9():WaitForChild("Handle"))
1976
1977function gunUItext(text) --Im that lazy
1978GunUI.AmmoBack.Ammo.Text = text
1979end
1980GunUI.AmmoBack.Ammo.TextColor3 = Color3.new(0, 0, 255)
1981function Reload()
1982Reloading = true
1983GetM9().Handle.ReloadSound:Play()
1984gunUItext("-- / --")
1985wait(Data["ReloadTime"])
1986Ammo = Data["ClipSize"]
1987gunUItext(Ammo .. " / " .. Ammo)
1988Reloading = false
1989end
1990
1991local igList = {game.Workspace:WaitForChild(Player.Name),unpack(game.Workspace.Map.BulletStorage:GetChildren()),game.Workspace.Map}
1992
1993function CastRay(OldPos)
1994
1995local function getBodyDamage(bP)
1996if bP.Name == "Head" then
1997return "Head"
1998elseif bP.Name == "Torso" then
1999return "Torso"
2000else
2001return "Else"
2002end
2003end
2004
2005local function evenOrodd()
2006if math.random(1,2) == 1 then
2007return 1
2008else
2009return -1
2010end
2011end
2012
2013local ray
2014if OldPos then
2015ray = Ray.new(Player.Character.Head.CFrame.p,(OldPos - Player.Character.Head.CFrame.p).unit * Data["Range"])
2016else
2017local Eq = ((math.random(-Data["Accuracy"],Data["Accuracy"])/100) * (Player.Character.Head.CFrame.p - Mouse.Hit.p).magnitude * .01)
2018local tempEq = Mouse.Hit * CFrame.new(Eq * evenOrodd(),Eq * evenOrodd(),Eq * evenOrodd())
2019ray = Ray.new(Player.Character.Head.CFrame.p,((tempEq).p - Player.Character.Head.CFrame.p).unit * Data["Range"])
2020end
2021local hit, position = game.Workspace:FindPartOnRayWithIgnoreList(ray, igList)
2022
2023local rayP = Instance.new("Part")
2024rayP.Parent = Character
2025rayP.Size = Vector3.new(.2,.2,((GetM9().Handle.CFrame * Data["BarrelOffset"]).p - position).magnitude)
2026rayP.Anchored = true
2027rayP.CanCollide = false
2028rayP.Transparency = .75
2029rayP.CFrame = CFrame.new((GetM9().Handle.CFrame * Data["BarrelOffset"]).p,position) * CFrame.new(0,0,rayP.Size.Z/-2)
2030
2031local dat = Player:FindFirstChild("Data")
2032if dat then
2033rayP.BrickColor = BrickColor.new("Magenta")
2034if rayP.BrickColor ~= BrickColor.new("Medium stone grey") then
2035rayP.Material = "Neon"
2036rayP.Transparency = 0
2037end
2038end
2039
2040local msh = Instance.new("BlockMesh")
2041msh.Parent = rayP
2042msh.Scale = Vector3.new(.25,.25,1)
2043
2044game.ReplicatedStorage.Remotes.ServerGun:FireServer(rayP.CFrame, rayP.Size, rayP.BrickColor, GetM9():WaitForChild("Handle"))
2045
2046if hit then
2047local Human = hit.Parent:FindFirstChild("Humanoid") or hit.Parent.Parent:FindFirstChild("Humanoid")
2048if Human and Humanoid.Health > 0 and Human ~= Humanoid then
2049if hit.Parent:FindFirstChild("Humanoid") then
2050F1R3(Human, Data["Damages"][getBodyDamage(hit)])
2051else
2052if hit.Parent.ClassName == "Accessory" then
2053F1R3(Human, Data["Damages"]["Head"])
2054elseif hit.Parent.ClassName == "Tool" then
2055F1R3(Human, Data["Damages"]["Else"])
2056end
2057end
2058end
2059end
2060
2061spawn(function()
2062for i = rayP.Transparency,1,.05 do
2063wait(.05)
2064rayP.Transparency = i
2065end
2066rayP:Destroy()
2067end)
2068
2069end
2070
2071GetM9().Equipped:Connect(function(M)
2072
2073Equipped = true
2074GunUI.Parent = Player.PlayerGui
2075M.Icon = "rbxassetid://76603102"
2076
2077M.Button1Down:Connect(function()
2078
2079Firing = true
2080
2081if Ammo <= 0 and not Reloading then
2082Reload()
2083end
2084
2085if Data["FireMode"] == "Auto" then
2086if Equipped and not Reloading and Firing and Humanoid.Health > 0 then
2087if Ammo > 0 then
2088repeat
2089wait(Data["FireRate"])
2090Ammo = Ammo - 1
2091for i = 1,Data["NumBullets"] do
2092CastRay()
2093end
2094gunUItext(Ammo .. " / " .. Data["ClipSize"])
2095GetM9().Handle.ShotSound:Play()
2096until Ammo <= 0 or Reloading or not Firing or Humanoid.Health <= 0 or not Equipped
2097wait()
2098if Ammo <= 0 then
2099repeat
2100wait(Data["FireRate"])
2101GetM9().Handle.EmptySound:Play()
2102until Reloading or not Firing or not Equipped
2103end
2104end
2105end
2106else
2107if Equipped and not Reloading and Firing and Humanoid.Health > 0 then
2108if Ammo > 0 then
2109if CanFire then
2110CanFire = false
2111Ammo = Ammo - 1
2112for i = 1,Data["NumBullets"] do
2113CastRay()
2114end
2115gunUItext(Ammo .. " / " .. Data["ClipSize"])
2116GetM9().Handle.ShotSound:Play()
2117wait(Data["FireRate"])
2118CanFire = true
2119end
2120end
2121end
2122end
2123
2124end)
2125
2126M.Button1Up:Connect(function()
2127Firing = false
2128end)
2129
2130end)
2131
2132GetM9().Unequipped:Connect(function(M)
2133Equipped = false
2134GunUI.Parent = script
2135end)
2136
2137UIS.InputBegan:Connect(function(Key)
2138if Equipped then
2139if Key.KeyCode == Enum.KeyCode.R and not Reloading then
2140Reload()
2141end
2142end
2143end)]]
2144
2145
2146function run()
2147 loadstring(source)()
2148end
2149
2150
2151function bypass()
2152 spawn(function()
2153 local m9 = game.Players.LocalPlayer.Backpack:WaitForChild("M9")
2154 local s = m9:FindFirstChild("GunClient")
2155 if s then
2156 s.Disabled = true
2157 for i,v in pairs(s:children())do
2158 if v then
2159 v = v:Clone()
2160 v.Parent = script
2161 end
2162 end
2163 wait()
2164 s:Destroy()
2165 wait()
2166 run()
2167 end
2168 end)
2169end
2170
2171bypass()
2172game.Players.LocalPlayer.CharacterAdded:Connect(bypass)
2173end)
2174
2175addcmd('goto','go to a player',{},
2176function(args)
2177local players=getPlayer(args[1])
2178if players ~= nil and _char(players[1]):FindFirstChild("HumanoidRootPart") then
2179_char(admin).HumanoidRootPart.CFrame = _char(players[1]).HumanoidRootPart.CFrame
2180end
2181end)
2182
2183addcmd('swim','swim',nil,
2184function(args)
2185NOCLIP = false
2186SWIM = true
2187end)
2188
2189addcmd('noswim','noswim',nil,
2190function(args)
2191SWIM = false
2192end)
2193
2194addcmd('view','view player',{},
2195function(args)
2196local players=getPlayer(args[1])
2197workspace.CurrentCamera.CameraSubject = game.Players[players[1]].Character
2198end)
2199
2200addcmd('noclip','noclips local player',nil,
2201function(args,speaker)
2202NOCLIP = true
2203SWIM = false
2204end)
2205
2206addcmd('clip','clips local player',nil,
2207function(args,speaker)
2208NOCLIP = false
2209end)
2210
2211addcmd('ibtools','Gives IBtools',{},
2212function(args)
2213loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
2214end)
2215
2216addcmd('admin','gives a player admin',{},
2217function(args)
2218if not args[1]then return end
2219local players=getPlayer(args[1])
2220table.foreach(players,function(k,v)
2221admins[v]=true
2222game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Progress takes sacrifice..", "All")
2223end)
2224end)
2225
2226addcmd('unadmin','removes a players admin',{},
2227function(args)
2228if not args[1] then return end
2229local players=getPlayer(args[1])
2230table.foreach(players,function(k,v)
2231admins[v]=nil
2232game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Nothing is certain.", "All")
2233end)
2234end)
2235
2236addcmd('weapons','gives you weapons',nil,
2237function(args)
2238-- Objects
2239
2240local Teleports = Instance.new("ScreenGui")
2241local Frame = Instance.new("Frame")
2242local Frame_2 = Instance.new("Frame")
2243local Frame_3 = Instance.new("Frame")
2244local Frame_4 = Instance.new("Frame")
2245local Frame_5 = Instance.new("Frame")
2246local Lobby = Instance.new("TextButton")
2247local Alive = Instance.new("TextButton")
2248local Close = Instance.new("TextButton")
2249
2250-- Properties
2251
2252Teleports.Name = "Teleports"
2253Teleports.Parent = game.CoreGui
2254
2255Frame.Parent = Teleports
2256Frame.Active = true
2257Frame.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
2258Frame.BorderSizePixel = 0
2259Frame.Draggable = true
2260Frame.Position = UDim2.new(0, 0, 0, 176)
2261Frame.Size = UDim2.new(0, 350, 0, 210)
2262
2263Frame_2.Parent = Frame
2264Frame_2.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
2265Frame_2.BorderSizePixel = 0
2266Frame_2.Size = UDim2.new(0, 35, 0, 230)
2267
2268Frame_3.Parent = Frame
2269Frame_3.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
2270Frame_3.BorderSizePixel = 0
2271Frame_3.Position = UDim2.new(0, 344, 0, 0)
2272Frame_3.Size = UDim2.new(0, 31, 0, 230)
2273
2274Frame_4.Parent = Frame
2275Frame_4.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
2276Frame_4.BorderSizePixel = 0
2277Frame_4.Position = UDim2.new(0, 0, 0, 200)
2278Frame_4.Size = UDim2.new(0, 375, 0, 35)
2279
2280Frame_5.Parent = Frame
2281Frame_5.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
2282Frame_5.BorderSizePixel = 0
2283Frame_5.Size = UDim2.new(0, 375, 0, 35)
2284
2285Lobby.Name = "Lobby"
2286Lobby.Parent = Frame
2287Lobby.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2288Lobby.BorderSizePixel = 0
2289Lobby.Position = UDim2.new(0, 88, 0, 40)
2290Lobby.Size = UDim2.new(0, 200, 0, 35)
2291Lobby.Font = Enum.Font.SciFi
2292Lobby.Text = "Lobby"
2293Lobby.TextColor3 = Color3.new(1, 0, 0)
2294Lobby.TextSize = 30
2295Lobby.TextWrapped = true
2296
2297Alive.Name = "Alive"
2298Alive.Parent = Frame
2299Alive.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2300Alive.BorderSizePixel = 0
2301Alive.Position = UDim2.new(0, 88, 0, 83)
2302Alive.Size = UDim2.new(0, 200, 0, 35)
2303Alive.Font = Enum.Font.SciFi
2304Alive.Text = "Alive"
2305Alive.TextColor3 = Color3.new(1, 0, 0)
2306Alive.TextSize = 30
2307Alive.TextWrapped = true
2308
2309
2310Close.Name = "Close"
2311Close.Parent = Frame
2312Close.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2313Close.BorderSizePixel = 0
2314Close.Position = UDim2.new(0, 88, 0, 150)
2315Close.Size = UDim2.new(0, 200, 0, 38)
2316Close.Font = Enum.Font.SciFi
2317Close.Text = "Close"
2318Close.TextColor3 = Color3.new(0.3, 0.8, 0.92)
2319Close.TextSize = 30
2320Close.TextWrapped = true
2321
2322---------------Functions---------------
2323Close.MouseButton1Click:connect(function()
2324game.CoreGui.Teleports:Destroy()
2325end)
2326
2327Alive.MouseButton1Click:connect(function()
2328game.CoreGui.Teleports:Destroy()
2329
2330NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
2331game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
2332wait(1.9)
2333
2334for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
2335if (v:IsA("Tool")) then
2336v.Parent = game.Players.LocalPlayer
2337end
2338end
2339wait()
2340game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
2341wait(0.6)
2342
2343for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
2344if (v:IsA("Tool")) then
2345v.Parent = game.Players.LocalPlayer.Backpack
2346end
2347end
2348
2349game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
2350end)
2351end)
2352
2353addcmd('cmds','gets the commands',nil,
2354function(args)
2355--Objects
2356
2357local Gui = Instance.new("ScreenGui")
2358local Frame = Instance.new("Frame")
2359local Left = Instance.new("Frame")
2360local Middle = Instance.new("Frame")
2361local Bottom = Instance.new("Frame")
2362local Top = Instance.new("Frame")
2363local Right = Instance.new("Frame")
2364local Car = Instance.new("TextButton")
2365local Van = Instance.new("TextButton")
2366local MotorCycle = Instance.new("TextButton")
2367local OffRoader = Instance.new("TextButton")
2368local Close = Instance.new("TextButton")
2369local MinimizeClose = Instance.new("TextButton")
2370local MinimizeOpen = Instance.new("TextButton")
2371local Night = Instance.new("TextButton")
2372local Day = Instance.new("TextButton")
2373local One = Instance.new("TextButton")
2374local Two = Instance.new("TextButton")
2375local Three = Instance.new("TextButton")
2376local Four = Instance.new("TextButton")
2377local Get = Instance.new("TextButton")
2378local Drop = Instance.new("TextButton")
2379local S = Instance.new("TextButton")
2380local KnifeFrame = Instance.new("Frame")
2381local KnifeOpen = Instance.new("TextButton")
2382local KnifeClose = Instance.new("TextButton")
2383local KnifeRight = Instance.new("Frame")
2384local CommandsScrollbar = Instance.new("ScrollingFrame")
2385
2386 --Commands stuff
2387local WS = Instance.new("TextLabel")
2388local GOTO = Instance.new("TextLabel")
2389local FLY = Instance.new("TextLabel")
2390local AIMBOT = Instance.new("TextLabel")
2391local M9 = Instance.new("TextLabel")
2392local SAVE = Instance.new("TextLabel")
2393local GET = Instance.new("TextLabel")
2394local NOGRAV = Instance.new("TextLabel")
2395local GRAV = Instance.new("TextLabel")
2396local ARENA = Instance.new("TextLabel")
2397local IBTOOLS = Instance.new("TextLabel")
2398local KILL = Instance.new("TextLabel")
2399local SPEED = Instance.new("TextLabel")
2400
2401 --Colors
2402local Blue = Instance.new("TextButton")
2403local Purple = Instance.new("TextButton")
2404local Green = Instance.new("TextButton")
2405
2406 -- Properties
2407
2408Gui.Name = "haxmemes"
2409Gui.Parent = game.CoreGui
2410
2411Frame.Parent = Gui
2412Frame.Active = true
2413Frame.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
2414Frame.BorderSizePixel = 0
2415Frame.Draggable = true
2416Frame.Transparency = 0.3
2417Frame.Position = UDim2.new(0, 500, 0, 176)
2418Frame.Size = UDim2.new(0, 550, 0, 270)
2419
2420KnifeFrame.Name = "KnifeFrame"
2421KnifeFrame.Parent = Frame
2422KnifeFrame.Active = true
2423KnifeFrame.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
2424KnifeFrame.BorderSizePixel = 0
2425KnifeFrame.Draggable = false
2426KnifeFrame.Transparency = 0
2427KnifeFrame.Position = UDim2.new(0, 560, 0, 0)
2428KnifeFrame.Size = UDim2.new(0, 170, 0, 270)
2429
2430KnifeOpen.Name = "KnifeOpen"
2431KnifeOpen.Parent = Top
2432KnifeOpen.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2433KnifeOpen.BorderSizePixel = 1
2434KnifeOpen.Position = UDim2.new(0, 105, 0, 3)
2435KnifeOpen.Size = UDim2.new(0, 65, 0, 18)
2436KnifeOpen.Font = Enum.Font.SciFi
2437KnifeOpen.Text = "Knife"
2438KnifeOpen.TextColor3 = Color3.new(0.3, 0.8, 0.92)
2439KnifeOpen.TextSize = 20
2440KnifeOpen.BorderColor3 = Color3.new(0.3, 0.8, 0.92)
2441KnifeOpen.TextWrapped = true
2442
2443KnifeClose.Name = "KnifeClose"
2444KnifeClose.Parent = Top
2445KnifeClose.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2446KnifeClose.BorderSizePixel = 1
2447KnifeClose.Position = UDim2.new(0, 105, 0, 3)
2448KnifeClose.Size = UDim2.new(0, 65, 0, 18)
2449KnifeClose.Font = Enum.Font.SciFi
2450KnifeClose.Text = "Knife"
2451KnifeClose.TextColor3 = Color3.new(0.3, 0.8, 0.92)
2452KnifeClose.TextSize = 20
2453KnifeClose.BorderColor3 = Color3.new(0.3, 0.8, 0.92)
2454KnifeClose.TextWrapped = true
2455
2456One.Name = "One"
2457One.Parent = KnifeFrame
2458One.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2459One.BorderSizePixel = 1
2460One.Position = UDim2.new(0, 10, 0, 30)
2461One.Size = UDim2.new(0, 60, 0, 30)
2462One.Font = Enum.Font.SciFi
2463One.Text = "10"
2464One.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2465One.TextSize = 30
2466One.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2467One.TextWrapped = true
2468
2469Two.Name = "Two"
2470Two.Parent = KnifeFrame
2471Two.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2472Two.BorderSizePixel = 1
2473Two.Position = UDim2.new(0, 105, 0, 30)
2474Two.Size = UDim2.new(0, 60, 0, 30)
2475Two.Font = Enum.Font.SciFi
2476Two.Text = "20"
2477Two.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2478Two.TextSize = 30
2479Two.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2480Two.TextWrapped = true
2481
2482Three.Name = "Three"
2483Three.Parent = KnifeFrame
2484Three.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2485Three.BorderSizePixel = 1
2486Three.Position = UDim2.new(0, 10, 0, 80)
2487Three.Size = UDim2.new(0, 60, 0, 30)
2488Three.Font = Enum.Font.SciFi
2489Three.Text = "30"
2490Three.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2491Three.TextSize = 30
2492Three.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2493Three.TextWrapped = true
2494
2495Four.Name = "Four"
2496Four.Parent = KnifeFrame
2497Four.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2498Four.BorderSizePixel = 1
2499Four.Position = UDim2.new(0, 105, 0, 80)
2500Four.Size = UDim2.new(0, 60, 0, 30)
2501Four.Font = Enum.Font.SciFi
2502Four.Text = "40"
2503Four.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2504Four.TextSize = 30
2505Four.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2506Four.TextWrapped = true
2507
2508Drop.Name = "Drop"
2509Drop.Parent = KnifeFrame
2510Drop.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2511Drop.BorderSizePixel = 1
2512Drop.Position = UDim2.new(0, 105, 0, 210)
2513Drop.Size = UDim2.new(0, 60, 0, 30)
2514Drop.Font = Enum.Font.SciFi
2515Drop.Text = "Drop"
2516Drop.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2517Drop.TextSize = 30
2518Drop.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2519Drop.TextWrapped = true
2520
2521Get.Name = "Get"
2522Get.Parent = KnifeFrame
2523Get.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2524Get.BorderSizePixel = 1
2525Get.Position = UDim2.new(0, 10, 0, 210)
2526Get.Size = UDim2.new(0, 60, 0, 30)
2527Get.Font = Enum.Font.SciFi
2528Get.Text = "Get"
2529Get.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2530Get.TextSize = 30
2531Get.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2532Get.TextWrapped = true
2533
2534KnifeRight.Name = "KnifeRight"
2535KnifeRight.Parent = Frame
2536KnifeRight.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
2537KnifeRight.BorderSizePixel = 0
2538KnifeRight.Position = UDim2.new(0, 730, 0, 0)
2539KnifeRight.Size = UDim2.new(0, 10, 0, 270)
2540
2541CommandsScrollbar.Name = "CommandsScrollbar"
2542CommandsScrollbar.Parent = Frame
2543CommandsScrollbar.Active = true
2544CommandsScrollbar.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
2545CommandsScrollbar.BackgroundTransparency = 1
2546CommandsScrollbar.Draggable = false
2547CommandsScrollbar.Position = UDim2.new(0, 11, 0, 24)
2548CommandsScrollbar.Size = UDim2.new(0, 538, 0, 237)
2549CommandsScrollbar.CanvasSize = UDim2.new(0, 300, 1.9)
2550CommandsScrollbar.ScrollBarThickness = 0
2551
2552WS.Name = "WS"
2553WS.Parent = CommandsScrollbar
2554WS.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2555WS.BorderSizePixel = 0
2556WS.BackgroundTransparency = 1
2557WS.Position = UDim2.new(0, 95, 0, 10)
2558WS.Size = UDim2.new(0, 400, 0, 38)
2559WS.Font = Enum.Font.Cartoon
2560WS.Text = "$ws me NUMBER"
2561WS.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2562WS.TextSize = 30
2563WS.TextWrapped = true
2564
2565GOTO.Name = "GOTO"
2566GOTO.Parent = CommandsScrollbar
2567GOTO.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2568GOTO.BorderSizePixel = 0
2569GOTO.BackgroundTransparency = 1
2570GOTO.Position = UDim2.new(0, 80, 0, 50)
2571GOTO.Size = UDim2.new(0, 400, 0, 38)
2572GOTO.Font = Enum.Font.Cartoon
2573GOTO.Text = "$goto player"
2574GOTO.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2575GOTO.TextSize = 30
2576GOTO.TextWrapped = true
2577
2578FLY.Name = "FLY"
2579FLY.Parent = CommandsScrollbar
2580FLY.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2581FLY.BorderSizePixel = 0
2582FLY.BackgroundTransparency = 1
2583FLY.Position = UDim2.new(0, 15, 0, 90)
2584FLY.Size = UDim2.new(0, 400, 0, 38)
2585FLY.Font = Enum.Font.Cartoon
2586FLY.Text = "$fly"
2587FLY.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2588FLY.TextSize = 30
2589FLY.TextWrapped = true
2590
2591AIMBOT.Name = "AIMBOT"
2592AIMBOT.Parent = CommandsScrollbar
2593AIMBOT.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2594AIMBOT.BorderSizePixel = 0
2595AIMBOT.BackgroundTransparency = 1
2596AIMBOT.Position = UDim2.new(0, 155, 0, 130)
2597AIMBOT.Size = UDim2.new(0, 400, 0, 38)
2598AIMBOT.Font = Enum.Font.Cartoon
2599AIMBOT.Text = "$aimbot (hold CTRL to use aimbot, ALT for esp.)"
2600AIMBOT.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2601AIMBOT.TextSize = 16
2602AIMBOT.TextWrapped = true
2603
2604M9.Name = "M9"
2605M9.Parent = CommandsScrollbar
2606M9.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2607M9.BorderSizePixel = 0
2608M9.BackgroundTransparency = 1
2609M9.Position = UDim2.new(0, 155, 0, 170)
2610M9.Size = UDim2.new(0, 400, 0, 38)
2611M9.Font = Enum.Font.Cartoon
2612M9.Text = "$m9 for m9 hack"
2613M9.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2614M9.TextSize = 24
2615M9.TextWrapped = true
2616
2617SAVE.Name = "SAVE"
2618SAVE.Parent = CommandsScrollbar
2619SAVE.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2620SAVE.BorderSizePixel = 0
2621SAVE.BackgroundTransparency = 1
2622SAVE.Position = UDim2.new(0, 140, 0, 220)
2623SAVE.Size = UDim2.new(0, 400, 0, 38)
2624SAVE.Font = Enum.Font.Cartoon
2625SAVE.Text = "$Save | Saves your tools"
2626SAVE.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2627SAVE.TextSize = 30
2628SAVE.TextWrapped = true
2629
2630GET.Name = "GET"
2631GET.Parent = CommandsScrollbar
2632GET.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2633GET.BorderSizePixel = 0
2634GET.BackgroundTransparency = 1
2635GET.Position = UDim2.new(0, 140, 0, 260)
2636GET.Size = UDim2.new(0, 400, 0, 38)
2637GET.Font = Enum.Font.Cartoon
2638GET.Text = "$Get | receives your tools"
2639GET.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2640GET.TextSize = 28
2641GET.TextWrapped = true
2642
2643NOGRAV.Name = "NOGRAV"
2644NOGRAV.Parent = CommandsScrollbar
2645NOGRAV.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2646NOGRAV.BorderSizePixel = 0
2647NOGRAV.BackgroundTransparency = 1
2648NOGRAV.Position = UDim2.new(0, 145, 0, 300)
2649NOGRAV.Size = UDim2.new(0, 400, 0, 38)
2650NOGRAV.Font = Enum.Font.Cartoon
2651NOGRAV.Text = "$Nograv | Makes you float basically"
2652NOGRAV.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2653NOGRAV.TextSize = 29
2654NOGRAV.TextWrapped = true
2655
2656GRAV.Name = "GRAV"
2657GRAV.Parent = CommandsScrollbar
2658GRAV.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2659GRAV.BorderSizePixel = 0
2660GRAV.BackgroundTransparency = 1
2661GRAV.Position = UDim2.new(0, 160, 0, 340)
2662GRAV.Size = UDim2.new(0, 400, 0, 38)
2663GRAV.Font = Enum.Font.Cartoon
2664GRAV.Text = "$Grav | Restores normal gravity"
2665GRAV.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2666GRAV.TextSize = 26
2667GRAV.TextWrapped = true
2668
2669Left.Name = "Left"
2670Left.Parent = Frame
2671Left.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
2672Left.BorderSizePixel = 0
2673Left.Size = UDim2.new(0, 20, 0, 270)
2674Left.Position = UDim2.new(0, -10, 0, 0)
2675
2676Middle.Name = "Middle"
2677Middle.Parent = Frame
2678Middle.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
2679Middle.BorderSizePixel = 0
2680Middle.Position = UDim2.new(0, 170, 0, 0)
2681Middle.Size = UDim2.new(0, 35, 0, 270)
2682
2683Right.Name = "Right"
2684Right.Parent = Frame
2685Right.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
2686Right.BorderSizePixel = 0
2687Right.Position = UDim2.new(0, 550, 0, 0)
2688Right.Size = UDim2.new(0, 15, 0, 270)
2689
2690Bottom.Name = "Bottom"
2691Bottom.Parent = Frame
2692Bottom.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
2693Bottom.BorderSizePixel = 0
2694Bottom.Position = UDim2.new(0, 0, 0, 260)
2695Bottom.Size = UDim2.new(0, 550, 0, 10)
2696
2697Top.Name = "Top"
2698Top.Parent = Frame
2699Top.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
2700Top.BorderSizePixel = 0
2701Top.Size = UDim2.new(0, 575, 0, 23)
2702Top.Position = UDim2.new(0, -10, 0, 0)
2703
2704Car.Name = "Car"
2705Car.Parent = Frame
2706Car.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2707Car.BorderSizePixel = 3
2708Car.Position = UDim2.new(0, 15, 0, 40)
2709Car.Size = UDim2.new(0, 150, 0, 35)
2710Car.Font = Enum.Font.SciFi
2711Car.Text = "Car"
2712Car.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2713Car.TextSize = 30
2714Car.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2715Car.TextWrapped = true
2716
2717KILL.Name = "KILL"
2718KILL.Parent = CommandsScrollbar
2719KILL.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2720KILL.BorderSizePixel = 0
2721KILL.BackgroundTransparency = 1
2722KILL.Position = UDim2.new(0, 160, 0, 380)
2723KILL.Size = UDim2.new(0, 400, 0, 38)
2724KILL.Font = Enum.Font.Cartoon
2725KILL.Text = "$Kill | (Hold m9 for it to work)"
2726KILL.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2727KILL.TextSize = 27
2728KILL.TextWrapped = true
2729
2730SPEED.Name = "SPEED"
2731SPEED.Parent = CommandsScrollbar
2732SPEED.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2733SPEED.BorderSizePixel = 0
2734SPEED.BackgroundTransparency = 1
2735SPEED.Position = UDim2.new(0, 160, 0, 420)
2736SPEED.Size = UDim2.new(0, 400, 0, 38)
2737SPEED.Font = Enum.Font.Cartoon
2738SPEED.Text = "$Vspeed | gives your vehicles speed"
2739SPEED.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2740SPEED.TextSize = 23
2741SPEED.TextWrapped = true
2742
2743Van.Name = "Van"
2744Van.Parent = Frame
2745Van.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2746Van.BorderSizePixel = 3
2747Van.Position = UDim2.new(0, 15, 0, 90)
2748Van.Size = UDim2.new(0, 150, 0, 35)
2749Van.Font = Enum.Font.SciFi
2750Van.Text = "Van"
2751Van.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2752Van.TextSize = 30
2753Van.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2754Van.TextWrapped = true
2755
2756MotorCycle.Name = "MotorCycle"
2757MotorCycle.Parent = Frame
2758MotorCycle.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2759MotorCycle.BorderSizePixel = 3
2760MotorCycle.Position = UDim2.new(0, 15, 0, 140)
2761MotorCycle.Size = UDim2.new(0, 150, 0, 38)
2762MotorCycle.Font = Enum.Font.SciFi
2763MotorCycle.Text = "MotorCycle"
2764MotorCycle.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2765MotorCycle.TextSize = 30
2766MotorCycle.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2767MotorCycle.TextWrapped = true
2768
2769OffRoader.Name = "OffRoader"
2770OffRoader.Parent = Frame
2771OffRoader.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2772OffRoader.BorderSizePixel = 3
2773OffRoader.Position = UDim2.new(0, 15, 0, 190)
2774OffRoader.Size = UDim2.new(0, 150, 0, 38)
2775OffRoader.Font = Enum.Font.SciFi
2776OffRoader.Text = "Off Roader"
2777OffRoader.TextColor3 = Color3.new(0.09, 0.08, 0.12)
2778OffRoader.TextSize = 30
2779OffRoader.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2780OffRoader.TextWrapped = true
2781
2782Close.Name = "Close"
2783Close.Parent = Frame
2784Close.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2785Close.BorderSizePixel = 1
2786Close.Position = UDim2.new(0, -9, 0, 3)
2787Close.Size = UDim2.new(0, 18, 0, 18)
2788Close.Font = Enum.Font.SciFi
2789Close.Text = "X"
2790Close.TextColor3 = Color3.new(0.996078, 0.196078, 0.996078)
2791Close.TextSize = 20
2792Close.BorderColor3 = Color3.new(0.996078, 0.196078, 0.996078)
2793Close.TextWrapped = true
2794
2795S.Name = "S"
2796S.Parent = Frame
2797S.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2798S.BorderSizePixel = 1
2799S.Position = UDim2.new(0, -9, 0, 25)
2800S.Size = UDim2.new(0, 18, 0, 18)
2801S.Font = Enum.Font.SciFi
2802S.Text = "S"
2803S.TextColor3 = Color3.new(0.7, 0.65, 0.78)
2804S.TextSize = 20
2805S.BorderColor3 = Color3.new(0.7, 0.65, 0.78)
2806S.TextWrapped = true
2807
2808MinimizeClose.Name = "MinimizeClose"
2809MinimizeClose.Parent = Frame
2810MinimizeClose.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2811MinimizeClose.BorderSizePixel = 1
2812MinimizeClose.Position = UDim2.new(0, 13, 0, 3)
2813MinimizeClose.Size = UDim2.new(0, 18, 0, 18)
2814MinimizeClose.Font = Enum.Font.SciFi
2815MinimizeClose.Text = "-"
2816MinimizeClose.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
2817MinimizeClose.TextSize = 20
2818MinimizeClose.BorderColor3 = Color3.new(0.996078, 0.996078, 0.996078)
2819MinimizeClose.TextWrapped = true
2820
2821MinimizeOpen.Name = "MinimizeOpen"
2822MinimizeOpen.Parent = Frame
2823MinimizeOpen.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2824MinimizeOpen.BorderSizePixel = 1
2825MinimizeOpen.Position = UDim2.new(0, 13, 0, 3)
2826MinimizeOpen.Size = UDim2.new(0, 18, 0, 18)
2827MinimizeOpen.Font = Enum.Font.SciFi
2828MinimizeOpen.Text = "+"
2829MinimizeOpen.TextColor3 = Color3.new(0.92, 0.5, 0.2)
2830MinimizeOpen.TextSize = 20
2831MinimizeOpen.BorderColor3 = Color3.new(0.92, 0.5, 0.2)
2832MinimizeOpen.TextWrapped = true
2833MinimizeOpen.Active = false
2834MinimizeOpen.Visible = false
2835
2836Day.Name = "Day"
2837Day.Parent = Frame
2838Day.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2839Day.BorderSizePixel = 1
2840Day.Position = UDim2.new(0, 47, 0, 3)
2841Day.Size = UDim2.new(0, 18, 0, 18)
2842Day.Font = Enum.Font.SciFi
2843Day.Text = "D"
2844Day.TextColor3 = Color3.new(0.93, 0.87, 0.1)
2845Day.TextSize = 20
2846Day.BorderColor3 = Color3.new(0.93, 0.87, 0.1)
2847Day.TextWrapped = true
2848
2849Night.Name = "Night"
2850Night.Parent = Frame
2851Night.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2852Night.BorderSizePixel = 1
2853Night.Position = UDim2.new(0, 69, 0, 3)
2854Night.Size = UDim2.new(0, 18, 0, 18)
2855Night.Font = Enum.Font.SciFi
2856Night.Text = "N"
2857Night.TextColor3 = Color3.new(0.2, 0.3, 0.8)
2858Night.TextSize = 20
2859Night.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
2860Night.TextWrapped = true
2861
2862Blue.Name = "Blue"
2863Blue.Parent = Frame
2864Blue.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2865Blue.BorderSizePixel = 1
2866Blue.Position = UDim2.new(0, 435, 0, 3)
2867Blue.Size = UDim2.new(0, 45, 0, 18)
2868Blue.Font = Enum.Font.SciFi
2869Blue.Text = "Blue"
2870Blue.TextColor3 = Color3.new(0.2, 0.3, 0.8)
2871Blue.TextSize = 20
2872Blue.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
2873Blue.TextWrapped = true
2874
2875Purple.Name = "Purple"
2876Purple.Parent = Frame
2877Purple.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2878Purple.BorderSizePixel = 1
2879Purple.Position = UDim2.new(0, 485, 0, 3)
2880Purple.Size = UDim2.new(0, 65, 0, 18)
2881Purple.Font = Enum.Font.SciFi
2882Purple.Text = "Purple"
2883Purple.TextColor3 = Color3.new(0.5, 0.3, 0.9)
2884Purple.TextSize = 20
2885Purple.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
2886Purple.TextWrapped = true
2887
2888Green.Name = "Green"
2889Green.Parent = Frame
2890Green.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
2891Green.BorderSizePixel = 1
2892Green.Position = UDim2.new(0, 375, 0, 3)
2893Green.Size = UDim2.new(0, 55, 0, 18)
2894Green.Font = Enum.Font.SciFi
2895Green.Text = "Green"
2896Green.TextColor3 = Color3.new(0.08, 0.98, 0.08)
2897Green.TextSize = 20
2898Green.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
2899Green.TextWrapped = true
2900
2901---------------Functions---------------
2902Drop.MouseButton1Click:connect(function()
2903for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
2904game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
2905v.Parent = workspace
2906end
2907end)
2908
2909Get.MouseButton1Click:connect(function()
2910for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
2911if (v:IsA("Tool")) then
2912v.Parent = game.Players.LocalPlayer.Backpack
2913end
2914end
2915end)
2916
2917S.MouseButton1Click:connect(function()
2918for i,v in pairs(game.Workspace:GetChildren()) do
2919if v.Name == "Motorcycle" and v:IsA("Model") then
2920v.Configuration["Forwards Speed"].Value = 170
2921end
2922end
2923
2924wait()
2925
2926for i,v in pairs(game.Workspace:GetChildren()) do
2927if v.Name == "Car" and v:IsA("Model") then
2928v.Configuration["Forwards Speed"].Value = 170
2929end
2930end
2931
2932wait()
2933
2934for i,v in pairs(game.Workspace:GetChildren()) do
2935if v.Name == "Van" and v:IsA("Model") then
2936v.Configuration["Forwards Speed"].Value = 170
2937end
2938end
2939end)
2940
2941MotorCycle.MouseButton1Click:connect(function()
2942game.Workspace.Motorcycle:MoveTo(Vector3.new(-1418.6875, 185.100006, 931.812755))
2943end)
2944
2945Van.MouseButton1Click:connect(function()
2946game.Workspace.Van:MoveTo(Vector3.new(-1418.6875, 185.100006, 931.812755))
2947game.Workspace.Van.Door1:Remove()
2948game.Workspace.Van.Door2:Remove()
2949game.Workspace.Van.Door3:Remove()
2950game.Workspace.Van.Door4:Remove()
2951end)
2952
2953Car.MouseButton1Click:connect(function()
2954game.Workspace.Car:MoveTo(Vector3.new(-1418.6875, 185.100006, 931.812755))
2955game.Workspace.Car.Door1:Remove()
2956game.Workspace.Car.Door2:Remove()
2957game.Workspace.Car.Door3:Remove()
2958game.Workspace.Car.Door4:Remove()
2959end)
2960
2961OffRoader.MouseButton1Click:connect(function()
2962game.Workspace["Off-Roader"]:MoveTo(Vector3.new(-1418.6875, 185.100006, 931.812755))
2963game.Workspace["Off-Roader"].Door1:Remove()
2964game.Workspace["Off-Roader"].Door2:Remove()
2965game.Workspace["Off-Roader"].Door3:Remove()
2966game.Workspace["Off-Roader"].Door4:Remove()
2967end)
2968
2969Close.MouseButton1Click:connect(function()
2970game.CoreGui.haxmemes:remove()
2971game.CoreGui.haxmemes:remove()
2972game.CoreGui.haxmemes:remove()
2973game.CoreGui.haxmemes:remove()
2974game.CoreGui.haxmemes:remove()
2975game.CoreGui.haxmemes:remove()
2976game.CoreGui.haxmemes:remove()
2977game.CoreGui.haxmemes:remove()
2978game.CoreGui.haxmemes:remove()
2979game.CoreGui.haxmemes:remove()
2980game.CoreGui.haxmemes:remove()
2981game.CoreGui.haxmemes:remove()
2982end)
2983
2984KnifeOpen.MouseButton1Click:connect(function()
2985game.CoreGui.haxmemes.Frame.Bottom.Size = UDim2.new(0, 740, 0, 10)
2986game.CoreGui.haxmemes.Frame.Top.Size = UDim2.new(0, 740, 0, 23)
2987game.CoreGui.haxmemes.Frame.KnifeFrame.Transparency = 0
2988game.CoreGui.haxmemes.Frame.KnifeRight.Transparency = 0
2989game.CoreGui.haxmemes.Frame.Top.KnifeOpen.Active = false
2990game.CoreGui.haxmemes.Frame.Top.KnifeOpen.Visible = false
2991game.CoreGui.haxmemes.Frame.Top.KnifeClose.Active = true
2992game.CoreGui.haxmemes.Frame.Top.KnifeClose.Visible = true
2993game.CoreGui.haxmemes.Frame.KnifeFrame.One.Transparency = 0
2994game.CoreGui.haxmemes.Frame.KnifeFrame.Two.Transparency = 0
2995game.CoreGui.haxmemes.Frame.KnifeFrame.Three.Transparency = 0
2996game.CoreGui.haxmemes.Frame.KnifeFrame.Four.Transparency = 0
2997game.CoreGui.haxmemes.Frame.KnifeFrame.Get.Transparency = 0
2998game.CoreGui.haxmemes.Frame.KnifeFrame.Drop.Transparency = 0
2999end)
3000
3001KnifeClose.MouseButton1Click:connect(function()
3002game.CoreGui.haxmemes.Frame.Bottom.Size = UDim2.new(0, 560, 0, 10)
3003game.CoreGui.haxmemes.Frame.Top.Size = UDim2.new(0, 560, 0, 23)
3004game.CoreGui.haxmemes.Frame.KnifeFrame.Transparency = 1
3005game.CoreGui.haxmemes.Frame.KnifeRight.Transparency = 1
3006game.CoreGui.haxmemes.Frame.Top.KnifeOpen.Active = true
3007game.CoreGui.haxmemes.Frame.Top.KnifeOpen.Visible = true
3008game.CoreGui.haxmemes.Frame.Top.KnifeClose.Active = false
3009game.CoreGui.haxmemes.Frame.Top.KnifeClose.Visible = false
3010game.CoreGui.haxmemes.Frame.KnifeFrame.One.Transparency = 1
3011game.CoreGui.haxmemes.Frame.KnifeFrame.Two.Transparency = 1
3012game.CoreGui.haxmemes.Frame.KnifeFrame.Three.Transparency = 1
3013game.CoreGui.haxmemes.Frame.KnifeFrame.Four.Transparency = 1
3014game.CoreGui.haxmemes.Frame.KnifeFrame.Get.Transparency = 1
3015game.CoreGui.haxmemes.Frame.KnifeFrame.Drop.Transparency = 1
3016end)
3017
3018One.MouseButton1Click:connect(function()
3019num = 10
3020
3021game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3022wait(1.7)
3023game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3024wait()
3025game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3026wait(0.3)
3027for i=1, num do
3028game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3029wait(1.9)
3030game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3031game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3032wait()
3033game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3034wait(0.3)
3035end
3036end)
3037
3038Two.MouseButton1Click:connect(function()
3039num = 20
3040
3041game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3042wait(1.7)
3043game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3044wait()
3045game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3046wait(0.3)
3047for i=1, num do
3048game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3049wait(1.9)
3050game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3051game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3052wait()
3053game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3054wait(0.3)
3055end
3056end)
3057
3058Three.MouseButton1Click:connect(function()
3059num = 30
3060
3061game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3062wait(1.7)
3063game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3064wait()
3065game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3066wait(0.3)
3067for i=1, num do
3068game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3069wait(1.9)
3070game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3071game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3072wait()
3073game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3074wait(0.3)
3075end
3076end)
3077
3078Four.MouseButton1Click:connect(function()
3079num = 40
3080
3081game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3082wait(1.7)
3083game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3084wait()
3085game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3086wait(0.3)
3087for i=1, num do
3088game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3089wait(1.9)
3090game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3091game.Players.LocalPlayer.Backpack.Knife.Parent = game.Players.LocalPlayer
3092wait()
3093game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3094wait(0.3)
3095end
3096end)
3097
3098
3099Purple.MouseButton1Click:connect(function()
3100game.CoreGui.haxmemes.Frame.MotorCycle.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3101game.CoreGui.haxmemes.Frame.MotorCycle.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3102game.CoreGui.haxmemes.Frame.OffRoader.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3103game.CoreGui.haxmemes.Frame.OffRoader.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3104game.CoreGui.haxmemes.Frame.Van.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3105game.CoreGui.haxmemes.Frame.Van.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3106game.CoreGui.haxmemes.Frame.Car.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3107game.CoreGui.haxmemes.Frame.Car.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3108game.CoreGui.haxmemes.Frame.Left.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
3109game.CoreGui.haxmemes.Frame.Right.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
3110game.CoreGui.haxmemes.Frame.Bottom.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
3111game.CoreGui.haxmemes.Frame.Middle.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
3112game.CoreGui.haxmemes.Frame.Top.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
3113game.CoreGui.haxmemes.Frame.KnifeRight.BackgroundColor3 = Color3.new(0.5, 0.3, 0.9)
3114game.CoreGui.haxmemes.Frame.KnifeFrame.One.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3115game.CoreGui.haxmemes.Frame.KnifeFrame.Two.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3116game.CoreGui.haxmemes.Frame.KnifeFrame.Three.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3117game.CoreGui.haxmemes.Frame.KnifeFrame.Four.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3118game.CoreGui.haxmemes.Frame.KnifeFrame.Get.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3119game.CoreGui.haxmemes.Frame.KnifeFrame.Drop.BorderColor3 = Color3.new(0.5, 0.3, 0.9)
3120end)
3121
3122Blue.MouseButton1Click:connect(function()
3123game.CoreGui.haxmemes.Frame.MotorCycle.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3124game.CoreGui.haxmemes.Frame.MotorCycle.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3125game.CoreGui.haxmemes.Frame.OffRoader.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3126game.CoreGui.haxmemes.Frame.OffRoader.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3127game.CoreGui.haxmemes.Frame.Van.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3128game.CoreGui.haxmemes.Frame.Van.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3129game.CoreGui.haxmemes.Frame.Car.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3130game.CoreGui.haxmemes.Frame.Car.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3131game.CoreGui.haxmemes.Frame.Left.BackgroundColor3 = Color3.new(0.2, 0.3, 0.8)
3132game.CoreGui.haxmemes.Frame.Right.BackgroundColor3 = Color3.new(0.2, 0.3, 0.8)
3133game.CoreGui.haxmemes.Frame.Bottom.BackgroundColor3 = Color3.new(0.2, 0.3, 0.8)
3134game.CoreGui.haxmemes.Frame.Middle.BackgroundColor3 = Color3.new(0.2, 0.3, 0.8)
3135game.CoreGui.haxmemes.Frame.Top.BackgroundColor3 = Color3.new(0.2, 0.3, 0.8)
3136game.CoreGui.haxmemes.Frame.KnifeRight.BackgroundColor3 = Color3.new(0.2, 0.3, 0.8)
3137game.CoreGui.haxmemes.Frame.KnifeFrame.One.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3138game.CoreGui.haxmemes.Frame.KnifeFrame.Two.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3139game.CoreGui.haxmemes.Frame.KnifeFrame.Three.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3140game.CoreGui.haxmemes.Frame.KnifeFrame.Four.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3141game.CoreGui.haxmemes.Frame.KnifeFrame.Get.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3142game.CoreGui.haxmemes.Frame.KnifeFrame.Drop.BorderColor3 = Color3.new(0.2, 0.3, 0.8)
3143end)
3144
3145Green.MouseButton1Click:connect(function()
3146game.CoreGui.haxmemes.Frame.MotorCycle.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3147game.CoreGui.haxmemes.Frame.MotorCycle.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3148game.CoreGui.haxmemes.Frame.OffRoader.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3149game.CoreGui.haxmemes.Frame.OffRoader.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3150game.CoreGui.haxmemes.Frame.Van.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3151game.CoreGui.haxmemes.Frame.Van.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3152game.CoreGui.haxmemes.Frame.Car.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3153game.CoreGui.haxmemes.Frame.Car.TextColor3 = Color3.new(0.09, 0.08, 0.12)
3154game.CoreGui.haxmemes.Frame.Left.BackgroundColor3 = Color3.new(0.08, 0.98, 0.08)
3155game.CoreGui.haxmemes.Frame.Right.BackgroundColor3 = Color3.new(0.08, 0.98, 0.08)
3156game.CoreGui.haxmemes.Frame.Bottom.BackgroundColor3 = Color3.new(0.08, 0.98, 0.08)
3157game.CoreGui.haxmemes.Frame.Middle.BackgroundColor3 = Color3.new(0.08, 0.98, 0.08)
3158game.CoreGui.haxmemes.Frame.Top.BackgroundColor3 = Color3.new(0.08, 0.98, 0.08)
3159game.CoreGui.haxmemes.Frame.KnifeRight.BackgroundColor3 = Color3.new(0.08, 0.98, 0.08)
3160game.CoreGui.haxmemes.Frame.KnifeFrame.One.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3161game.CoreGui.haxmemes.Frame.KnifeFrame.Two.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3162game.CoreGui.haxmemes.Frame.KnifeFrame.Three.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3163game.CoreGui.haxmemes.Frame.KnifeFrame.Four.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3164game.CoreGui.haxmemes.Frame.KnifeFrame.Get.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3165game.CoreGui.haxmemes.Frame.KnifeFrame.Drop.BorderColor3 = Color3.new(0.08, 0.98, 0.08)
3166end)
3167
3168
3169
3170Day.MouseButton1Click:connect(function()
3171if game.Lighting.TimeOfDay == "00:00:00" then
3172 game.Lighting.TimeOfDay = 1
3173 wait()
3174 game.Lighting.TimeOfDay = 2
3175 wait()
3176 game.Lighting.TimeOfDay = 3
3177 wait()
3178 game.Lighting.TimeOfDay = 4
3179 wait()
3180 game.Lighting.TimeOfDay = 5
3181 game.Lighting.Brightness = 10
3182 wait()
3183 game.Lighting.TimeOfDay = 6
3184 wait()
3185 game.Lighting.TimeOfDay = 7
3186 wait()
3187 game.Lighting.TimeOfDay = 8
3188 wait()
3189 game.Lighting.TimeOfDay = 9
3190 wait()
3191 game.Lighting.TimeOfDay = 10
3192 wait()
3193 game.Lighting.TimeOfDay = 11
3194 wait()
3195 game.Lighting.TimeOfDay = 12
3196 end
3197end)
3198
3199Night.MouseButton1Click:connect(function()
3200if game.Lighting.TimeOfDay == "12:00:00" then
3201 game.Lighting.TimeOfDay = 11
3202 wait()
3203 game.Lighting.TimeOfDay = 10
3204 wait()
3205 game.Lighting.TimeOfDay = 9
3206 wait()
3207 game.Lighting.TimeOfDay = 8
3208 wait()
3209 game.Lighting.TimeOfDay = 7
3210 wait()
3211 game.Lighting.TimeOfDay = 6
3212 wait()
3213 game.Lighting.TimeOfDay = 5
3214 game.Lighting.Brightness = 0
3215 wait()
3216 game.Lighting.TimeOfDay = 4
3217 wait()
3218 game.Lighting.TimeOfDay = 3
3219 wait()
3220 game.Lighting.TimeOfDay = 2
3221 wait()
3222 game.Lighting.TimeOfDay = 1
3223 wait()
3224 game.Lighting.TimeOfDay = 0
3225 game.Lighting.Brightness = 0
3226 end
3227end)
3228
3229MinimizeClose.MouseButton1Click:connect(function()
3230game.CoreGui.haxmemes.Frame.S.Transparency = 1
3231game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.1
3232game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.1
3233game.CoreGui.haxmemes.Frame.Van.Transparency = 0.1
3234game.CoreGui.haxmemes.Frame.Car.Transparency = 0.1
3235game.CoreGui.haxmemes.Frame.Left.Transparency = 0.1
3236game.CoreGui.haxmemes.Frame.Right.Transparency = 0.1
3237game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.1
3238game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.1
3239game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.1
3240game.CoreGui.haxmemes.Frame.Transparency = 0.1
3241wait()
3242game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.2
3243game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.2
3244game.CoreGui.haxmemes.Frame.Van.Transparency = 0.2
3245game.CoreGui.haxmemes.Frame.Car.Transparency = 0.2
3246game.CoreGui.haxmemes.Frame.Left.Transparency = 0.2
3247game.CoreGui.haxmemes.Frame.Right.Transparency = 0.2
3248game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.2
3249game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.2
3250game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.2
3251game.CoreGui.haxmemes.Frame.Transparency = 0.2
3252wait()
3253game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.3
3254game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.3
3255game.CoreGui.haxmemes.Frame.Van.Transparency = 0.3
3256game.CoreGui.haxmemes.Frame.Car.Transparency = 0.3
3257game.CoreGui.haxmemes.Frame.Left.Transparency = 0.3
3258game.CoreGui.haxmemes.Frame.Right.Transparency = 0.3
3259game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.3
3260game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.3
3261game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.3
3262game.CoreGui.haxmemes.Frame.Transparency = 0.3
3263wait()
3264game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.4
3265game.CoreGui.haxmemes.Frame.OffRoader.Transparency =0.4
3266game.CoreGui.haxmemes.Frame.Van.Transparency = 0.4
3267game.CoreGui.haxmemes.Frame.Car.Transparency = 0.4
3268game.CoreGui.haxmemes.Frame.Left.Transparency = 0.4
3269game.CoreGui.haxmemes.Frame.Right.Transparency = 0.4
3270game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.4
3271game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.4
3272game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.4
3273game.CoreGui.haxmemes.Frame.Transparency = 0.4
3274wait()
3275game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.5
3276game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.5
3277game.CoreGui.haxmemes.Frame.Van.Transparency = 0.5
3278game.CoreGui.haxmemes.Frame.Car.Transparency = 0.5
3279game.CoreGui.haxmemes.Frame.Left.Transparency = 0.5
3280game.CoreGui.haxmemes.Frame.Right.Transparency = 0.5
3281game.CoreGui.haxmemes.Frame.Bottom.Transparency =0.5
3282game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.5
3283game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.5
3284game.CoreGui.haxmemes.Frame.Transparency = 0.5
3285wait()
3286game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.6
3287game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.6
3288game.CoreGui.haxmemes.Frame.Van.Transparency = 0.6
3289game.CoreGui.haxmemes.Frame.Car.Transparency = 0.6
3290game.CoreGui.haxmemes.Frame.Left.Transparency = 0.6
3291game.CoreGui.haxmemes.Frame.Right.Transparency = 0.6
3292game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.6
3293game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.6
3294game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.6
3295game.CoreGui.haxmemes.Frame.Transparency = 0.6
3296wait()
3297game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.7
3298game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.7
3299game.CoreGui.haxmemes.Frame.Van.Transparency = 0.7
3300game.CoreGui.haxmemes.Frame.Car.Transparency = 0.7
3301game.CoreGui.haxmemes.Frame.Left.Transparency = 0.7
3302game.CoreGui.haxmemes.Frame.Right.Transparency = 0.7
3303game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.7
3304game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.7
3305game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.7
3306game.CoreGui.haxmemes.Frame.Transparency = 0.7
3307wait()
3308game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.8
3309game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.8
3310game.CoreGui.haxmemes.Frame.Van.Transparency = 0.8
3311game.CoreGui.haxmemes.Frame.Car.Transparency = 0.8
3312game.CoreGui.haxmemes.Frame.Left.Transparency = 0.8
3313game.CoreGui.haxmemes.Frame.Right.Transparency = 0.8
3314game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.8
3315game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.8
3316game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.8
3317game.CoreGui.haxmemes.Frame.Transparency = 0.8
3318wait()
3319game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.9
3320game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.9
3321game.CoreGui.haxmemes.Frame.Van.Transparency = 0.9
3322game.CoreGui.haxmemes.Frame.Car.Transparency = 0.9
3323game.CoreGui.haxmemes.Frame.Left.Transparency = 0.9
3324game.CoreGui.haxmemes.Frame.Right.Transparency = 0.9
3325game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.9
3326game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.9
3327game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.9
3328game.CoreGui.haxmemes.Frame.Transparency = 0.9
3329wait()
3330game.CoreGui.haxmemes.Frame.MotorCycle.Active = false
3331game.CoreGui.haxmemes.Frame.OffRoader.Active = false
3332game.CoreGui.haxmemes.Frame.Van.Active = false
3333game.CoreGui.haxmemes.Frame.Car.Active = false
3334game.CoreGui.haxmemes.Frame.Left.Active = false
3335game.CoreGui.haxmemes.Frame.Right.Active = false
3336game.CoreGui.haxmemes.Frame.Bottom.Active = false
3337game.CoreGui.haxmemes.Frame.Middle.Active = false
3338game.CoreGui.haxmemes.Frame.CommandsScrollbar.Active = false
3339game.CoreGui.haxmemes.Frame.MotorCycle.Visible = false
3340game.CoreGui.haxmemes.Frame.OffRoader.Visible = false
3341game.CoreGui.haxmemes.Frame.Van.Visible = false
3342game.CoreGui.haxmemes.Frame.Car.Visible = false
3343game.CoreGui.haxmemes.Frame.Left.Visible = false
3344game.CoreGui.haxmemes.Frame.Right.Visible = false
3345game.CoreGui.haxmemes.Frame.Bottom.Visible = false
3346game.CoreGui.haxmemes.Frame.Middle.Visible = false
3347game.CoreGui.haxmemes.Frame.CommandsScrollbar.Visible = false
3348game.CoreGui.haxmemes.Frame.Transparency = 1
3349game.CoreGui.haxmemes.Frame.Size = UDim2.new(0, 550, 0, 23)
3350game.CoreGui.haxmemes.Frame.MinimizeOpen.Active = true
3351game.CoreGui.haxmemes.Frame.MinimizeOpen.Visible = true
3352game.CoreGui.haxmemes.Frame.MinimizeClose.Active = false
3353game.CoreGui.haxmemes.Frame.MinimizeClose.Visible = false
3354end)
3355
3356MinimizeOpen.MouseButton1Click:connect(function()
3357game.CoreGui.haxmemes.Frame.S.Transparency = 0
3358game.CoreGui.haxmemes.Frame.MinimizeOpen.Active = false
3359game.CoreGui.haxmemes.Frame.MinimizeOpen.Visible = false
3360game.CoreGui.haxmemes.Frame.MinimizeClose.Active = true
3361game.CoreGui.haxmemes.Frame.MinimizeClose.Visible = true
3362game.CoreGui.haxmemes.Frame.MotorCycle.Active = true
3363game.CoreGui.haxmemes.Frame.OffRoader.Active = true
3364game.CoreGui.haxmemes.Frame.Van.Active = true
3365game.CoreGui.haxmemes.Frame.Car.Active = true
3366game.CoreGui.haxmemes.Frame.Left.Active = true
3367game.CoreGui.haxmemes.Frame.Right.Active = true
3368game.CoreGui.haxmemes.Frame.Bottom.Active = true
3369game.CoreGui.haxmemes.Frame.Middle.Active = true
3370game.CoreGui.haxmemes.Frame.CommandsScrollbar.Active = true
3371
3372game.CoreGui.haxmemes.Frame.MotorCycle.Visible = true
3373game.CoreGui.haxmemes.Frame.OffRoader.Visible = true
3374game.CoreGui.haxmemes.Frame.Van.Visible = true
3375game.CoreGui.haxmemes.Frame.Car.Visible = true
3376game.CoreGui.haxmemes.Frame.Left.Visible = true
3377game.CoreGui.haxmemes.Frame.Right.Visible = true
3378game.CoreGui.haxmemes.Frame.Bottom.Visible = true
3379game.CoreGui.haxmemes.Frame.Middle.Visible = true
3380game.CoreGui.haxmemes.Frame.CommandsScrollbar.Visible = true
3381game.CoreGui.haxmemes.Frame.Transparency = 1
3382game.CoreGui.haxmemes.Frame.Size = UDim2.new(0, 550, 0, 270)
3383wait()
3384game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.9
3385game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.9
3386game.CoreGui.haxmemes.Frame.Van.Transparency = 0.9
3387game.CoreGui.haxmemes.Frame.Car.Transparency = 0.9
3388game.CoreGui.haxmemes.Frame.Left.Transparency = 0.9
3389game.CoreGui.haxmemes.Frame.Right.Transparency = 0.9
3390game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.9
3391game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.9
3392game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.9
3393game.CoreGui.haxmemes.Frame.Transparency = 0.9
3394wait()
3395game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.8
3396game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.8
3397game.CoreGui.haxmemes.Frame.Van.Transparency = 0.8
3398game.CoreGui.haxmemes.Frame.Car.Transparency = 0.8
3399game.CoreGui.haxmemes.Frame.Left.Transparency = 0.8
3400game.CoreGui.haxmemes.Frame.Right.Transparency = 0.8
3401game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.8
3402game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.8
3403game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.8
3404game.CoreGui.haxmemes.Frame.Transparency = 0.8
3405wait()
3406game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.7
3407game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.7
3408game.CoreGui.haxmemes.Frame.Van.Transparency = 0.7
3409game.CoreGui.haxmemes.Frame.Car.Transparency = 0.7
3410game.CoreGui.haxmemes.Frame.Left.Transparency = 0.7
3411game.CoreGui.haxmemes.Frame.Right.Transparency = 0.7
3412game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.7
3413game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.7
3414game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.7
3415game.CoreGui.haxmemes.Frame.Transparency = 0.7
3416wait()
3417game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.6
3418game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.6
3419game.CoreGui.haxmemes.Frame.Van.Transparency = 0.6
3420game.CoreGui.haxmemes.Frame.Car.Transparency = 0.6
3421game.CoreGui.haxmemes.Frame.Left.Transparency = 0.6
3422game.CoreGui.haxmemes.Frame.Right.Transparency = 0.6
3423game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.6
3424game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.6
3425game.CoreGui.haxmemes.Frame.CommandsScrollbar.Transparency = 0.6
3426wait()
3427game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.5
3428game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.5
3429game.CoreGui.haxmemes.Frame.Van.Transparency = 0.5
3430game.CoreGui.haxmemes.Frame.Car.Transparency = 0.5
3431game.CoreGui.haxmemes.Frame.Left.Transparency = 0.5
3432game.CoreGui.haxmemes.Frame.Right.Transparency = 0.5
3433game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.5
3434game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.5
3435wait()
3436game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.4
3437game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.4
3438game.CoreGui.haxmemes.Frame.Van.Transparency = 0.4
3439game.CoreGui.haxmemes.Frame.Car.Transparency = 0.4
3440game.CoreGui.haxmemes.Frame.Left.Transparency = 0.4
3441game.CoreGui.haxmemes.Frame.Right.Transparency = 0.4
3442game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.4
3443game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.4
3444wait()
3445game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.3
3446game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.3
3447game.CoreGui.haxmemes.Frame.Van.Transparency = 0.3
3448game.CoreGui.haxmemes.Frame.Car.Transparency = 0.3
3449game.CoreGui.haxmemes.Frame.Left.Transparency = 0.3
3450game.CoreGui.haxmemes.Frame.Right.Transparency = 0.3
3451game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.3
3452game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.3
3453wait()
3454game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.2
3455game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.2
3456game.CoreGui.haxmemes.Frame.Van.Transparency = 0.2
3457game.CoreGui.haxmemes.Frame.Car.Transparency = 0.2
3458game.CoreGui.haxmemes.Frame.Left.Transparency = 0.2
3459game.CoreGui.haxmemes.Frame.Right.Transparency = 0.2
3460game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.2
3461game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.2
3462wait()
3463game.CoreGui.haxmemes.Frame.MotorCycle.Transparency = 0.1
3464game.CoreGui.haxmemes.Frame.OffRoader.Transparency = 0.1
3465game.CoreGui.haxmemes.Frame.Van.Transparency = 0.1
3466game.CoreGui.haxmemes.Frame.Car.Transparency = 0.1
3467game.CoreGui.haxmemes.Frame.Left.Transparency = 0.1
3468game.CoreGui.haxmemes.Frame.Right.Transparency = 0.1
3469game.CoreGui.haxmemes.Frame.Bottom.Transparency = 0.1
3470game.CoreGui.haxmemes.Frame.Middle.Transparency = 0.1
3471end)
3472
3473
3474game.CoreGui.haxmemes.Frame.KnifeFrame.Transparency = 1
3475game.CoreGui.haxmemes.Frame.KnifeRight.Transparency = 1
3476game.CoreGui.haxmemes.Frame.Top.KnifeClose.Active = false
3477game.CoreGui.haxmemes.Frame.Top.KnifeClose.Visible = false
3478game.CoreGui.haxmemes.Frame.KnifeFrame.One.Transparency = 1
3479game.CoreGui.haxmemes.Frame.KnifeFrame.Two.Transparency = 1
3480game.CoreGui.haxmemes.Frame.KnifeFrame.Three.Transparency = 1
3481game.CoreGui.haxmemes.Frame.KnifeFrame.Four.Transparency = 1
3482game.CoreGui.haxmemes.Frame.KnifeFrame.Get.Transparency = 1
3483game.CoreGui.haxmemes.Frame.KnifeFrame.Drop.Transparency = 1
3484end)
3485
3486addcmd('arena','Takes you to the training arena',nil,
3487function(args)
3488game.ReplicatedStorage.Remotes.ArenaToggle:FireServer()
3489end)
3490
3491addcmd('vspeed','Makes your vehicle fast as F boi',nil,
3492function(args)
3493for i,v in pairs(game.Workspace:GetChildren()) do
3494if v.Name == "Motorcycle" and v:IsA("Model") then
3495v.Configuration["Forwards Speed"].Value = 170
3496end
3497end
3498wait()
3499for i,v in pairs(game.Workspace:GetChildren()) do
3500if v.Name == "Car" and v:IsA("Model") then
3501v.Configuration["Forwards Speed"].Value = 170
3502end
3503end
3504wait()
3505for i,v in pairs(game.Workspace:GetChildren()) do
3506if v.Name == "Van" and v:IsA("Model") then
3507v.Configuration["Forwards Speed"].Value = 170
3508end
3509end
3510end)
3511
3512addcmd('drop','drops all the tools',nil,
3513function(args)
3514for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
3515game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
3516v.Parent = workspace
3517end
3518end)
3519
3520
3521game.Players.LocalPlayer.PlayerGui.Core:Remove()
3522game.StarterGui.Core:Remove()
3523game.Workspace.Lobby.Model:Remove()
3524game.Workspace.Lobby.Model:Remove()
3525game.Workspace.Lobby.Model:Remove()
3526game.Workspace.Lobby.Model:Remove()
3527game.Workspace.Lobby.Model:Remove()
3528game.Workspace.Lobby.Model:Remove()
3529game.Workspace.Lobby.Model:Remove()
3530game.Workspace.Lobby.Model:Remove()
3531game.Workspace.Lobby.Model:Remove()
3532game.Workspace.Lobby.Model:Remove()
3533game.Workspace.Lobby.Model:Remove()
3534game.Workspace.Lobby.Model:Remove()
3535game.Workspace.Lobby.Model:Remove()
3536elseif cht:match("freeze") then
3537you = game.Players.LocalPlayer
3538urmouse = you:GetMouse()
3539m = game.Players.LocalPlayer:GetMouse()
3540urmouse.Button1Down:connect(function()
3541 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftAlt) then
3542 game.workspace.Events.ChangeVabil:FireServer("Freeze")
3543 wait(0.5)
3544 game.Workspace.Events.Vampire.FireballIce:FireServer(m.Hit.p, m.Hit.p)
3545local A_1 = true
3546local A_2 = "http://www.roblox.com/asset?id=394253848"
3547local Event = game:GetService("Workspace").Events.Vampire
3548Event:FireServer(A_1, A_2)
3549 end
3550end)
3551elseif cht:match("volatile") then
3552
3553you = game.Players.LocalPlayer
3554urmouse = you:GetMouse()
3555m = game.Players.LocalPlayer:GetMouse()
3556urmouse.Button1Down:connect(function()
3557 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.Q) then
3558local A_1 = true
3559local A_2 = "http://www.roblox.com/asset?id=365003340"
3560local Event = game:GetService("Workspace").Events.Vampire
3561Event:FireServer(A_1, A_2)
3562 game.workspace.Events.ChangeVabil:FireServer("Volatile")
3563 game.Workspace.Events.Vampire.Explode:FireServer(m.Hit.p, m.Hit.p)
3564 end
3565end)
3566elseif cht:match("flame") then
3567you = game.Players.LocalPlayer
3568urmouse = you:GetMouse()
3569m = game.Players.LocalPlayer:GetMouse()
3570urmouse.Button1Down:connect(function()
3571 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.R) then
3572 game.workspace.Events.ChangeVabil:FireServer("Flame")
3573 wait(0.5)
3574 game.Workspace.Events.Vampire.Fireball:FireServer(m.Hit.p, m.Hit.p)
3575local A_1 = true
3576local A_2 = "http://www.roblox.com/asset?id=158853971"
3577local Event = game:GetService("Workspace").Events.Vampire
3578Event:FireServer(A_1, A_2)
3579 end
3580end)
3581elseif cht:match("fireworks") then
3582local var = true
3583game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
3584 if key == "f" then
3585 game.workspace.Events.ChangeVabil:FireServer("Supersonic")
3586 wait(0.5)
3587local A_1 = true
3588local Event = game:GetService("Workspace").Events.Vampire.Supersonic
3589Event:FireServer(A_1)
3590 if var == true then var = false else var = true end
3591 end
3592end)
3593while var do
3594 wait(0.1)
3595 print("var is true")
3596end
3597elseif cht:match("teleport") then
3598you = game.Players.LocalPlayer
3599urmouse = you:GetMouse()
3600m = game.Players.LocalPlayer:GetMouse()
3601urmouse.Button1Down:connect(function()
3602 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftShift) then
3603 game.Workspace.Events.Vampire.Teleport:FireServer(m.Hit.p, m.Hit.p)
3604 end
3605end)
3606elseif cht:match("escape") then
3607 local var = true
3608game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
3609 if key == "q" then
3610local A_1 = true
3611local Event = game:GetService("Workspace").Events.Vampire.EscapeVampire
3612Event:FireServer(A_1)
3613 if var == true then var = false else var = true end
3614 end
3615end)
3616while var do
3617 wait(0.1)
3618 print("var is true")
3619end
3620elseif cht:match("ws") then
3621while wait (5) do
3622 game.Workspace.CurrentCamera.FieldOfView = 65
3623 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 23
3624end
3625elseif cht:match("chat") then
3626local lp = game.Players.LocalPlayer
3627game:GetService("RunService").Stepped:connect(function()
3628if lp.PlayerGui:FindFirstChild("ChatGui") then
3629for i, v in pairs(lp.PlayerGui.ChatGui.ChatInGame:GetChildren()) do
3630if v.Name:sub(1,7) ~= "ChatMSG" then
3631v.Size = UDim2.new(1,0,0,25)
3632v.BackgroundTransparency = 1
3633end
3634end
3635for i, v in pairs(lp.PlayerGui.ChatGui.Chat:GetChildren()) do
3636if v.Name:sub(1,7) ~= "ChatMSG" then
3637v.Size = UDim2.new(1,0,0,25)
3638v.BackgroundTransparency = 1
3639end
3640end
3641end
3642end)
3643elseif cht:match("nv") then
3644game.Lighting.Ambient = Color3.new(0, 0.7, 0)
3645elseif cht:match("dark") then
3646game.Lighting.Ambient = Color3.new(0.04, 0.04, 0.04)
3647elseif cht:match("uwu") then
3648while wait () do
3649local Event = workspace.Events.ChangeHealth:FireServer("inf")
3650Event:FireServer("inf")
3651end
3652elseif cht:match("in") then
3653local var = true
3654game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
3655 if key == "z" then
3656 local A_1 = true
3657local Event = game:GetService("Workspace").Events.Vampire.Invisibility
3658Event:FireServer(A_1)
3659 if var == true then var = false else var = true end
3660 end
3661end)
3662while var do
3663 wait(0.1)
3664 print("var is true")
3665end
3666elseif cht:match("un") then
3667local var = true
3668game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
3669 if key == "x" then
3670local A_1 = false
3671local Event = game:GetService("Workspace").Events.Vampire.Invisibility
3672Event:FireServer(A_1)
3673 if var == true then var = false else var = true end
3674 end
3675end)
3676while var do
3677 wait(0.1)
3678 print("var is true")
3679end
3680elseif cht:match("!ice") then
3681_G.Enabled = true
3682while wait(1) and _G.Enabled do
3683for i = 1, 10 do
3684for i, v in pairs(game.Players:GetChildren()) do
3685game.Workspace.Events.Vampire.FireballIce:FireServer(v.Character:findFirstChild('Torso').CFrame) end end end
3686elseif cht:match("!fire") then
3687_G.Enabled = true
3688while wait(1) and _G.Enabled do
3689for i = 1, 10 do
3690for i, v in pairs(game.Players:GetChildren()) do
3691game.Workspace.Events.Vampire.Fireball:FireServer(v.Character:findFirstChild('Torso').CFrame) end end end
3692elseif cht:match("doorspam") then
3693while wait () do
3694local Event = game:GetService("Workspace").CurrentMap.Map.Door.DorSC.Conec
3695Event:FireServer()
3696end
3697elseif cht:match("1name") then
3698game.Workspace.Events.ChangeCName:FireServer("6")
3699elseif cht:match("2name") then
3700game.Workspace.Events.ChangeCName:FireServer("7")
3701elseif cht:match("3name") then
3702game.Workspace.Events.ChangeCName:FireServer("8")
3703elseif cht:match("logs") then
3704if game:service('RunService'):IsStudio() then print('!STUDIO!') else
3705 if game:service('CoreGui'):findFirstChild('LogHolder') then return nil
3706 end
3707end
3708
3709local LogHolder = Instance.new("ScreenGui")
3710local Logs = Instance.new("Frame")
3711local Scroll = Instance.new("ScrollingFrame")
3712local Template = Instance.new("TextLabel")
3713
3714LogHolder.Name = "LogHolder"
3715if game:service('RunService'):IsStudio() then LogHolder.Parent = game.Players.LocalPlayer.PlayerGui else
3716 LogHolder.Parent = game.CoreGui
3717end
3718
3719Logs.Name = "Logs"
3720Logs.Parent = LogHolder
3721Logs.AnchorPoint = Vector2.new(0.5, 0.5)
3722Logs.BackgroundColor3 = Color3.new(1, 1, 1)
3723Logs.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
3724Logs.Size = UDim2.new(0, 400, 0, 250)
3725Logs.Style = Enum.FrameStyle.DropShadow
3726
3727Scroll.Name = "Scroll"
3728Scroll.Parent = Logs
3729Scroll.BackgroundColor3 = Color3.new(1, 1, 1)
3730Scroll.BackgroundTransparency = 1
3731Scroll.BorderSizePixel = 0
3732Scroll.Size = UDim2.new(1, 0, 1, 0)
3733Scroll.CanvasSize = UDim2.new(0, 0, 0, 0)
3734Scroll.ScrollBarThickness = 6
3735
3736Template.Name = "Template"
3737Template.Parent = Logs
3738Template.BackgroundColor3 = Color3.new(1, 1, 1)
3739Template.BackgroundTransparency = 1
3740Template.Position = UDim2.new(0, 0, 0, -25)
3741Template.Size = UDim2.new(1, 0, 0, 20)
3742Template.Font = Enum.Font.ArialBold
3743Template.Text = ""
3744Template.TextColor3 = Color3.new(1, 1, 1)
3745Template.TextSize = 15
3746Template.TextXAlignment = Enum.TextXAlignment.Left
3747Template.TextWrap = true
3748
3749Logs.Active = true
3750Logs.Draggable = true
3751
3752local loggedTable = {}
3753
3754local getTotalSize = function()
3755local totalSize = UDim2.new(0, 0, 0, 0)
3756
3757 for i, v in next, loggedTable do
3758 totalSize = totalSize + UDim2.new(0, 0, 0, v.Size.Y.Offset)
3759 end
3760
3761 return totalSize
3762end
3763
3764local BUD = UDim2.new(0, 0, 0, 0)
3765local TotalNum = 0
3766
3767local function GenLog(txt, colo, time)
3768 local oldColo = Color3.fromRGB(0, 0, 0)
3769
3770 local Temp = Template:Clone()
3771 Temp.Parent = Scroll
3772 Temp.Name = txt..'Logged'
3773 Temp.Text = tostring(txt)
3774 Temp.Visible = true
3775 Temp.Position = BUD + UDim2.new(0, 0, 0, 0)
3776 if colo then oldColo = colo Temp.TextColor3 = colo elseif not colo then Temp.TextColor3 = Color3.fromRGB(200, 200, 200) end
3777
3778 local timeVal = Instance.new('StringValue', Temp)
3779 timeVal.Name = 'TimeVal'
3780 timeVal.Value = time
3781
3782 TotalNum = TotalNum + 1
3783
3784 if not Temp.TextFits then repeat Temp.Size = UDim2.new(Temp.Size.X.Scale, Temp.Size.X.Offset, Temp.Size.Y.Scale, Temp.Size.Y.Offset + 10)
3785 Temp.Text = txt
3786 until Temp.TextFits
3787end
3788
3789 BUD = BUD + UDim2.new(0, 0, 0, Temp.Size.Y.Offset)
3790
3791 table.insert(loggedTable, Temp)
3792
3793 local totSize = getTotalSize()
3794
3795 if totSize.Y.Offset >= Scroll.CanvasSize.Y.Offset then Scroll.CanvasSize = UDim2.new(totSize.X.Scale, totSize.X.Offset, totSize.Y.Scale, totSize.Y.Offset + 100)
3796 Scroll.CanvasPosition = Scroll.CanvasPosition + Vector2.new(0, totSize.Y.Offset)
3797 end
3798
3799 return Temp
3800end
3801
3802local ChatData = ""
3803
3804local function SaveToFile()
3805 local t = os.date("*t")
3806 local dateDat = t['hour']..' '..t['min']..' '..t['sec']..' '..t['day']..'.'..t['month']..'.'..t['year']
3807
3808 ChatData = ""
3809
3810 for i, v in pairs(Scroll:GetChildren()) do
3811 ChatData = ChatData..v.TimeVal.Value..' '..v.Text..'\n'
3812 end
3813
3814 writefile('ChatLogs '..dateDat..'.txt', ChatData)
3815end
3816
3817
3818local function Clear()
3819 loggedTable = {}
3820 ChatData = ""
3821 Scroll.CanvasPosition = Vector2.new(0, 0)
3822 for i, v in pairs(Scroll:GetChildren()) do
3823 v:Destroy()
3824 end
3825 Scroll.CanvasSize = UDim2.new(0, 0, 0, 0)
3826 BUD = UDim2.new(0, 0, 0, 0)
3827end
3828
3829local LogPlr = function(plr)
3830 plr.Chatted:connect(function(msg)
3831
3832 local t = os.date("*t")
3833 local dateDat = t['hour']..':'..t['min']..':'..t['sec']
3834
3835 if string.len(msg) >= 1000 then return nil end
3836 if string.lower(msg) == 'clear' and plr == game:service('Players').LocalPlayer then Clear() return nil end
3837 if string.lower(msg) == 'savetofile' and plr == game:service('Players').LocalPlayer then SaveToFile() return nil end
3838 if string.sub(msg, 1, 1):match('%p') and string.sub(msg, 2, 2):match('%a') and string.len(msg) >= 5 then GenLog(plr.Name..': '..msg, Color3.new(255, 0, 0), dateDat) else
3839 GenLog(plr.Name..': '..msg, Color3.new(255, 255, 255), dateDat)
3840 end
3841 end)
3842end
3843
3844for i, v in pairs(game.Players:GetChildren()) do
3845 LogPlr(v)
3846end
3847
3848game.Players.PlayerAdded:connect(function(plr)
3849 LogPlr(plr)
3850end)
3851elseif cht:match("!m1") then
3852 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3853 local ns = "http://www.roblox.com/asset/?id="
3854 local s = "http://www.roblox.com/asset/?id=1120405613" --this is for the music
3855 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3856 wait(0.1)
3857 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3858 wait(0.1)
3859 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3860 wait(0.5)
3861 game.workspace.px9y.Torso["Invis"]:Destroy()
3862
3863
3864elseif cht:match("!m2") then
3865 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3866 local ns = "http://www.roblox.com/asset/?id="
3867 local s = "http://www.roblox.com/asset/?id=198077222" --this is for the music
3868 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3869 wait(0.1)
3870 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3871 wait(0.1)
3872 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3873 wait(0.5)
3874 game.workspace.px9y.Torso["Invis"]:Destroy()
3875
3876
3877elseif cht:match("!m3") then
3878 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3879 local ns = "http://www.roblox.com/asset/?id="
3880 local s = "http://www.roblox.com/asset/?id=152154367" --this is for the music
3881 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3882 wait(0.1)
3883 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3884 wait(0.1)
3885 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3886 wait(0.5)
3887 game.workspace.px9y.Torso["Invis"]:Destroy()
3888
3889
3890elseif cht:match("!m4") then
3891 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3892 local ns = "http://www.roblox.com/asset/?id="
3893 local s = "http://www.roblox.com/asset/?id=255355162" --this is for the music
3894 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3895 wait(0.1)
3896 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3897 wait(0.1)
3898 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3899 wait(0.5)
3900 game.workspace.px9y.Torso["Invis"]:Destroy()
3901elseif cht:match("!m5") then
3902 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3903 local ns = "http://www.roblox.com/asset/?id="
3904 local s = "http://www.roblox.com/asset/?id=306437921" --this is for the music
3905 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3906 wait(0.1)
3907 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3908 wait(0.1)
3909 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3910 wait(0.5)
3911 game.workspace.px9y.Torso["Invis"]:Destroy()
3912elseif cht:match("!one") then
3913 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3914 local ns = "http://www.roblox.com/asset/?id="
3915 local s = "http://www.roblox.com/asset/?id=2608047264" --this is for the music
3916 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3917 wait(0.1)
3918 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3919 wait(0.1)
3920 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3921 wait(0.5)
3922 game.workspace.px9y.Torso["Invis"]:Destroy()
3923elseif cht:match("!eafrica") then
3924 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3925 local ns = "http://www.roblox.com/asset/?id="
3926 local s = "http://www.roblox.com/asset/?id=2864069300" --this is for the music
3927 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3928 wait(0.1)
3929 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3930 wait(0.1)
3931 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3932 wait(0.5)
3933 game.workspace.px9y.Torso["Invis"]:Destroy()
3934 elseif cht:match("!shrek") then
3935 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3936 local ns = "http://www.roblox.com/asset/?id="
3937 local s = "http://www.roblox.com/asset/?id=152828706" --this is for the music
3938 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3939 wait(0.1)
3940 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3941 wait(0.1)
3942 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3943 wait(0.5)
3944 game.workspace.px9y.Torso["Invis"]:Destroy()
3945 elseif cht:match("!crab") then
3946 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3947 local ns = "http://www.roblox.com/asset/?id="
3948 local s = "http://www.roblox.com/asset/?id=2590490779" --this is for the music
3949 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3950 wait(0.1)
3951 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3952 wait(0.1)
3953 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3954 wait(0.5)
3955 game.workspace.px9y.Torso["Invis"]:Destroy()
3956 elseif cht:match("!bon") then
3957 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3958 local ns = "http://www.roblox.com/asset/?id="
3959 local s = "http://www.roblox.com/asset/?id=1705138886" --this is for the music
3960 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3961 wait(0.1)
3962 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3963 wait(0.1)
3964 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3965 wait(0.5)
3966 game.workspace.px9y.Torso["Invis"]:Destroy()
3967 elseif cht:match("!re7") then
3968 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3969 local ns = "http://www.roblox.com/asset/?id="
3970 local s = "http://www.roblox.com/asset/?id=624542641" --this is for the music
3971 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3972 wait(0.1)
3973 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3974 wait(0.1)
3975 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3976 wait(0.5)
3977 game.workspace.px9y.Torso["Invis"]:Destroy()
3978 elseif cht:match("!fpanda") then
3979 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3980 local ns = "http://www.roblox.com/asset/?id="
3981 local s = "http://www.roblox.com/asset/?id=434369582" --this is for the music
3982 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3983 wait(0.1)
3984 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3985 wait(0.1)
3986 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3987 wait(0.5)
3988 game.workspace.px9y.Torso["Invis"]:Destroy()
3989 elseif cht:match("!hide") then
3990 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
3991 local ns = "http://www.roblox.com/asset/?id="
3992 local s = "http://www.roblox.com/asset/?id=255355232" --this is for the music
3993 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
3994 wait(0.1)
3995 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
3996 wait(0.1)
3997 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
3998 wait(0.5)
3999 game.workspace.px9y.Torso["Invis"]:Destroy()
4000 elseif cht:match("!noob") then
4001 game.workspace.Events.ChangeVabil:FireServer("Invisibility")
4002 local ns = "http://www.roblox.com/asset/?id="
4003 local s = "http://www.roblox.com/asset/?id=276873987" --this is for the music
4004 game.workspace.Events.Vampire.Invisibility:FireServer(true, ns, ns, ns)
4005 wait(0.1)
4006 game.workspace.Events.Vampire.Invisibility:FireServer(true, s, s, s)-- this plays the music, if you want to change it, change true to false
4007 wait(0.1)
4008 game.workspace.Events.Vampire.Invisibility:FireServer(false, ns, ns, ns)
4009 wait(0.5)
4010 game.workspace.px9y.Torso["Invis"]:Destroy()
4011elseif cht:match("!pause") then
4012game.Workspace.Events.Vampire.Invisibility:FireServer(false, 0, "http://www.roblox.com/asset/?id=")
4013elseif cht:match("venom") then
4014you = game.Players.LocalPlayer
4015urmouse = you:GetMouse()
4016m = game.Players.LocalPlayer:GetMouse()
4017urmouse.Button1Down:connect(function()
4018 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.T) then
4019 game.workspace.Events.ChangeVabil:FireServer("Venom")
4020 m.Target.Parent:FindFirstChild("Humanoid")
4021 game.Workspace.Events.Vampire.Venom:FireServer(m.Target.Parent.Name)
4022 end
4023end)
4024elseif cht:match("loop") then
4025you = game.Players.LocalPlayer
4026urmouse = you:GetMouse()
4027m = game.Players.LocalPlayer:GetMouse()
4028urmouse.Button1Down:connect(function()
4029 if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.F) then
4030 game.workspace.Events.ChangeVabil:FireServer("Venom")
4031 m.Target.Parent:FindFirstChild("Humanoid")
4032while true do
4033 game.Workspace.Events.Vampire.Venom:FireServer(m.Target.Parent.Name)
4034 end
4035 end
4036end)
4037elseif cht:match("!stats") then
4038 loadstring(game:GetObjects("rbxassetid://499655484")[1].Source)()
4039elseif cht:match("!heal") then
4040 for i,v in pairs(T) do
4041local a = v.Character
4042local A_2 = CFrame.new(-18.2370358, 69.3723679, -1405.25818, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4043local A_3 = -99
4044local Event = game:GetService("Workspace").Events.Surv.TaserPlayer
4045Event:FireServer(A_2, A_3)
4046end
4047elseif cht:match("!suffer") then
4048 for i,v in pairs(T) do
4049local a = v.Character
4050local A_2 = CFrame.new(-18.2370358, 69.3723679, -1405.25818, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4051local A_3 = 84
4052local Event = game:GetService("Workspace").Events.Surv.TaserPlayer
4053Event:FireServer(A_2, A_3)
4054end
4055elseif cht:match("red") then
4056local A_1 = true
4057local A_2 = Color3.new(1, 0, 0)
4058local Event = game:GetService("Workspace").Events.ChangeFlashLight
4059Event:FireServer(A_1, A_2)
4060elseif cht:match("orange") then
4061local A_1 = true
4062local A_2 = Color3.new(1, 0.498039, 0)
4063local Event = game:GetService("Workspace").Events.ChangeFlashLight
4064Event:FireServer(A_1, A_2)
4065elseif cht:match("yellow") then
4066local A_1 = true
4067local A_2 = Color3.new(1, 1, 0)
4068local Event = game:GetService("Workspace").Events.ChangeFlashLight
4069Event:FireServer(A_1, A_2)
4070elseif cht:match("green") then
4071local A_1 = true
4072local A_2 = Color3.new(0, 1, 0)
4073local Event = game:GetService("Workspace").Events.ChangeFlashLight
4074Event:FireServer(A_1, A_2)
4075elseif cht:match("blue") then
4076local A_1 = true
4077local A_2 = Color3.new(0, 1, 1)
4078local Event = game:GetService("Workspace").Events.ChangeFlashLight
4079Event:FireServer(A_1, A_2)
4080elseif cht:match("purple") then
4081local A_1 = true
4082local A_2 = Color3.new(0.498039, 0, 1)
4083local Event = game:GetService("Workspace").Events.ChangeFlashLight
4084Event:FireServer(A_1, A_2)
4085elseif cht:match("pink") then
4086local A_1 = true
4087local A_2 = Color3.new(1, 0, 1)
4088local Event = game:GetService("Workspace").Events.ChangeFlashLight
4089Event:FireServer(A_1, A_2)
4090 end
4091end)
4092
4093local LP = game.Players.LocalPlayer
4094LP.Chatted:connect(function(msg)
4095 if msg:lower():sub(1,7) == ";morph " then
4096 for i=1,tonumber(msg:sub(8)) do
4097 workspace.Events.Surv.Morphine:FireServer()
4098 end
4099 end
4100 if msg:lower() == "!inftaser" then
4101 while wait(0.1) do
4102 if game.Players.LocalPlayer.Backpack:FindFirstChild("Taser") then
4103 local a = game.Players.LocalPlayer.Backpack.Taser.Taser:Clone()
4104 game.Players.LocalPlayer.Backpack.Taser.Taser:Destroy()
4105 a.Parent = game.Players.LocalPlayer.Backpack.Taser
4106 a.Name = "Taser"
4107 end
4108 if game.Players.LocalPlayer.Character:FindFirstChild("Taser") then
4109 local a = game.Players.LocalPlayer.Character.Taser.Taser:Clone()
4110 game.Players.LocalPlayer.Character.Taser.Taser:Destroy()
4111 a.Parent = game.Players.LocalPlayer.Character.Taser
4112 a.Name = "Taser"
4113 end
4114 end
4115 end
4116end)
4117
4118plr = game.Players.LocalPlayer
4119hum = plr.Character.HumanoidRootPart
4120mouse = plr:GetMouse()
4121mouse.KeyDown:connect(function(key)
4122if key == "c" then
4123game.Workspace.Events.Vampire.EscapeVampire:FireServer()
4124end
4125end)
4126
4127
4128
4129-- Farewell Infortality.
4130-- Version: 2.82
4131-- Instances:
4132local VampireHunters2Gui = Instance.new("ScreenGui")
4133local Main = Instance.new("ScrollingFrame")
4134local Morphine = Instance.new("TextButton")
4135local WalkSpeed = Instance.new("TextButton")
4136local PocketKnife = Instance.new("TextButton")
4137local Taser = Instance.new("TextButton")
4138local InvisibleON = Instance.new("TextButton")
4139local InvisibleOFF = Instance.new("TextButton")
4140local RemoveMusic = Instance.new("TextButton")
4141local Explode = Instance.new("TextButton")
4142local FEAdmin = Instance.new("TextButton")
4143local Anims = Instance.new("TextButton")
4144local OOFsong = Instance.new("TextButton")
4145local AlbertScreaming = Instance.new("TextButton")
4146local Close = Instance.new("TextButton")
4147local Open = Instance.new("TextButton")
4148local FToTP = Instance.new("TextButton")
4149--Properties:
4150VampireHunters2Gui.Name = "Vampire Hunters 2 Gui"
4151VampireHunters2Gui.Parent = game.CoreGui
4152
4153Main.Name = "Main"
4154Main.Parent = VampireHunters2Gui
4155Main.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
4156Main.Position = UDim2.new(0.231343299, 0, 0.260252357, 0)
4157Main.Size = UDim2.new(0, 501, 0, 258)
4158Main.Visible = false
4159Main.CanvasPosition = Vector2.new(0, 64.5)
4160
4161Morphine.Name = "Morphine"
4162Morphine.Parent = Main
4163Morphine.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4164Morphine.Position = UDim2.new(0.0658682585, 0, 0.0494766906, 0)
4165Morphine.Size = UDim2.new(0, 163, 0, 50)
4166Morphine.Font = Enum.Font.SourceSans
4167Morphine.Text = "Morphine"
4168Morphine.TextColor3 = Color3.new(0, 0, 0)
4169Morphine.TextSize = 24
4170Morphine.MouseButton1Down:connect(function()
4171 local tbl_main=
4172{
4173}
4174game:GetService("Workspace").Events.Surv.Morphine:FireServer(unpack(tbl_main))
4175end)
4176
4177WalkSpeed.Name = "WalkSpeed"
4178WalkSpeed.Parent = Main
4179WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4180WalkSpeed.Position = UDim2.new(0.433133721, 0, 0.0494766906, 0)
4181WalkSpeed.Size = UDim2.new(0, 163, 0, 50)
4182WalkSpeed.Font = Enum.Font.SourceSans
4183WalkSpeed.Text = "Walkspeed"
4184WalkSpeed.TextColor3 = Color3.new(0, 0, 0)
4185WalkSpeed.TextSize = 24
4186WalkSpeed.MouseButton1Down:connect(function()
4187 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 22
4188end)
4189
4190PocketKnife.Name = "Pocket Knife"
4191PocketKnife.Parent = Main
4192PocketKnife.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4193PocketKnife.Position = UDim2.new(0.0658682585, 0, 0.0999498814, 0)
4194PocketKnife.Size = UDim2.new(0, 163, 0, 50)
4195PocketKnife.Font = Enum.Font.SourceSans
4196PocketKnife.Text = "Pocket Knife"
4197PocketKnife.TextColor3 = Color3.new(0, 0, 0)
4198PocketKnife.TextSize = 24
4199PocketKnife.MouseButton1Down:connect(function()
4200 local tbl_main=
4201 {
4202 }
4203 game:GetService("Workspace").Events.Surv["Pocket Knife"]:FireServer(unpack(tbl_main))
4204end)
4205
4206Taser.Name = "Taser"
4207Taser.Parent = Main
4208Taser.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4209Taser.Position = UDim2.new(0.433133721, 0, 0.0999498814, 0)
4210Taser.Size = UDim2.new(0, 163, 0, 50)
4211Taser.Font = Enum.Font.SourceSans
4212Taser.Text = "Taser"
4213Taser.TextColor3 = Color3.new(0, 0, 0)
4214Taser.TextSize = 24
4215Taser.MouseButton1Down:connect(function()
4216 local tbl_main=
4217{
4218}
4219game:GetService("Workspace").Events.Surv.Taser:FireServer(unpack(tbl_main))
4220end)
4221
4222InvisibleON.Name = "Invisible ON"
4223InvisibleON.Parent = Main
4224InvisibleON.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4225InvisibleON.Position = UDim2.new(0.0658682585, 0, 0.150423065, 0)
4226InvisibleON.Size = UDim2.new(0, 163, 0, 50)
4227InvisibleON.Font = Enum.Font.SourceSans
4228InvisibleON.Text = "Invisible ON"
4229InvisibleON.TextColor3 = Color3.new(0, 0, 0)
4230InvisibleON.TextSize = 24
4231InvisibleON.MouseButton1Down:connect(function()
4232 wait(0.01)
4233local tbl_main =
4234{
4235 "Invisibility"
4236}
4237game:GetService("Workspace").Events.ChangeVabil:FireServer(unpack(tbl_main))
4238wait(0.001)
4239 local tbl_main =
4240{
4241 true,
4242 "http://www.roblox.com/asset?id=172830251",
4243 "http://www.roblox.com/asset?id=214695609"
4244}
4245game:GetService("Workspace").Events.Vampire.Invisibility:FireServer(unpack(tbl_main))
4246end)
4247
4248InvisibleOFF.Name = "Invisible OFF"
4249InvisibleOFF.Parent = Main
4250InvisibleOFF.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4251InvisibleOFF.Position = UDim2.new(0.433133721, 0, 0.150423065, 0)
4252InvisibleOFF.Size = UDim2.new(0, 163, 0, 50)
4253InvisibleOFF.Font = Enum.Font.SourceSans
4254InvisibleOFF.Text = "Invisible OFF"
4255InvisibleOFF.TextColor3 = Color3.new(0, 0, 0)
4256InvisibleOFF.TextSize = 24
4257InvisibleOFF.MouseButton1Down:connect(function()
4258 wait(0.01)
4259local tbl_main =
4260{
4261 "Invisibility"
4262}
4263game:GetService("Workspace").Events.ChangeVabil:FireServer(unpack(tbl_main))
4264wait(0.001)
4265 game.Workspace.Events.Vampire.Invisibility:FireServer(false, "http://www.roblox.com/asset?id=1572395510", "http://www.roblox.com/asset?id=1572395510")
4266game.Workspace.Events.Vampire.Invisibility:FireServer(false, "http://www.roblox.com/asset?id=1572395510", "http://www.roblox.com/asset?id=1572395510")
4267end)
4268
4269RemoveMusic.Name = "Remove Music"
4270RemoveMusic.Parent = Main
4271RemoveMusic.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4272RemoveMusic.Position = UDim2.new(0.776786029, 0, 0.0486023314, 0)
4273RemoveMusic.Size = UDim2.new(0, 93, 0, 177)
4274RemoveMusic.Font = Enum.Font.SourceSans
4275RemoveMusic.Text = "Remove Music"
4276RemoveMusic.TextColor3 = Color3.new(0, 0, 0)
4277RemoveMusic.TextSize = 24
4278RemoveMusic.TextWrapped = true
4279RemoveMusic.MouseButton1Down:connect(function()
4280 local tbl_main =
4281{
4282 "Invisibility"
4283}
4284game:GetService("Workspace").Events.ChangeVabil:FireServer(unpack(tbl_main))
4285wait(0.001)
4286 game.Workspace.Events.Vampire.Invisibility:FireServer(false, "http://www.roblox.com/asset?id=1572395510", "http://www.roblox.com/asset?id=1572395510")
4287end)
4288
4289Explode.Name = "Explode"
4290Explode.Parent = Main
4291Explode.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4292Explode.Position = UDim2.new(0.0658682585, 0, 0.200107604, 0)
4293Explode.Size = UDim2.new(0, 163, 0, 50)
4294Explode.Font = Enum.Font.SourceSans
4295Explode.Text = "Volatile"
4296Explode.TextColor3 = Color3.new(0, 0, 0)
4297Explode.TextSize = 24
4298Explode.MouseButton1Down:connect(function()
4299 wait(0.01)
4300local tbl_main =
4301{
4302 "Volatile"
4303}
4304game:GetService("Workspace").Events.ChangeVabil:FireServer(unpack(tbl_main))
4305wait(0.001)
4306 local tbl_main =
4307{
4308}
4309game:GetService("Workspace").Events.Vampire.Explode:FireServer(unpack(tbl_main))
4310end)
4311
4312FEAdmin.Name = "FE Admin"
4313FEAdmin.Parent = Main
4314FEAdmin.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4315FEAdmin.Position = UDim2.new(0.0658682585, 0, 0.250580788, 0)
4316FEAdmin.Size = UDim2.new(0, 163, 0, 50)
4317FEAdmin.Font = Enum.Font.SourceSans
4318FEAdmin.Text = "FE Admin"
4319FEAdmin.TextColor3 = Color3.new(0, 0, 0)
4320FEAdmin.TextSize = 24
4321FEAdmin.MouseButton1Down:connect(function()
4322 loadstring(game:HttpGet(('https://pastebin.com/raw/pyzjWNhk'),true))()
4323end)
4324
4325Anims.Name = "Anims"
4326Anims.Parent = Main
4327Anims.BackgroundColor3 = Color3.new(0, 0, 0.498039)
4328Anims.Position = UDim2.new(0.433133721, 0, 0.201684892, 0)
4329Anims.Size = UDim2.new(0, 163, 0, 50)
4330Anims.Font = Enum.Font.SourceSans
4331Anims.Text = "Animations"
4332Anims.TextColor3 = Color3.new(0, 0, 0)
4333Anims.TextSize = 24
4334Anims.MouseButton1Down:connect(function()
4335 local Energize = Instance.new("ScreenGui")
4336local SideFrame = Instance.new("Frame")
4337local OpenGUI = Instance.new("TextButton")
4338local SideFrameTitle = Instance.new("TextLabel")
4339local MainFrame = Instance.new("Frame")
4340local GuiBottomFrame = Instance.new("Frame")
4341local Credits = Instance.new("TextLabel")
4342local ScrollingFrame = Instance.new("ScrollingFrame")
4343local CheckR = Instance.new("TextLabel")
4344local ScrollingFrameR15 = Instance.new("ScrollingFrame")
4345
4346local CrazySlash = Instance.new("TextButton")--COMPLETE
4347local Open = Instance.new("TextButton")--COMPLETE
4348local R15Spinner = Instance.new("TextButton")--COMPLETE
4349local ArmsOut = Instance.new("TextButton")--COMPLETE
4350local FloatSlash = Instance.new("TextButton")--COMPLETE
4351local WeirdZombie = Instance.new("TextButton")--COMPLETE
4352local DownSlash = Instance.new("TextButton")--COMPLETE
4353local Pull = Instance.new("TextButton")--COMPLETE
4354local CircleArm = Instance.new("TextButton")--COMPLETE
4355local Bend = Instance.new("TextButton")--COMPLETE
4356local RotateSlash = Instance.new("TextButton")--COMPLETE
4357local FlingArms = Instance.new("TextButton")--COMPLETE
4358
4359local FullSwing = Instance.new("TextButton")--COMPLETE
4360local GlitchLevitate = Instance.new("TextButton")--COMPLETE
4361local MoonDance = Instance.new("TextButton")--COMPLETE
4362local FullPunch = Instance.new("TextButton")--COMPLETE
4363local Crouch = Instance.new("TextButton")--COMPLETE
4364local SpinDance = Instance.new("TextButton")--COMPLETE
4365local FloorFaint = Instance.new("TextButton")--COMPLETE
4366local JumpingJacks = Instance.new("TextButton")--COMPLETE
4367local Spinner = Instance.new("TextButton")--COMPLETE
4368local MegaInsane = Instance.new("TextButton")--COMPLETE
4369local ArmDetach = Instance.new("TextButton")--COMPLETE
4370local WeirdMove = Instance.new("TextButton")--COMPLETE
4371local Faint = Instance.new("TextButton")--COMPLETE
4372local CloneIllusion = Instance.new("TextButton")--COMPLETE
4373local Levitate = Instance.new("TextButton")--COMPLETE
4374local DinoWalk = Instance.new("TextButton")--COMPLETE
4375local FloorCrawl = Instance.new("TextButton")--COMPLETE
4376local SwordSlam = Instance.new("TextButton")--COMPLETE
4377local LoopHead = Instance.new("TextButton")--COMPLETE
4378local HeroJump = Instance.new("TextButton")--COMPLETE
4379local Insane = Instance.new("TextButton")--COMPLETE
4380local FloatingHead = Instance.new("TextButton")--COMPLETE
4381local HeadThrow = Instance.new("TextButton")--COMPLETE
4382local MovingDance = Instance.new("TextButton")--COMPLETE
4383local SuperPunch = Instance.new("TextButton")--COMPLETE
4384local ArmTurbine = Instance.new("TextButton")--COMPLETE
4385local Dab = Instance.new("TextButton")--COMPLETE
4386local FloatSit = Instance.new("TextButton")--COMPLETE
4387local SuperFaint = Instance.new("TextButton")--COMPLETE
4388local BarrelRoll = Instance.new("TextButton")--COMPLETE
4389local Scared = Instance.new("TextButton")--COMPLETE
4390local InsaneArms = Instance.new("TextButton")--COMPLETE
4391local SwordSlice = Instance.new("TextButton")--COMPLETE
4392local SpinDance2 = Instance.new("TextButton")--COMPLETE
4393local BowDown = Instance.new("TextButton")--COMPLETE
4394local LoopSlam = Instance.new("TextButton")--COMPLETE
4395
4396local GuiTopFrame = Instance.new("Frame") -- Top of the main frame
4397local CloseGUI = Instance.new("TextButton") -- To close the GUI
4398local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize
4399
4400-- Properties
4401
4402Energize.Name = "Energize"
4403Energize.Parent = game.Players.LocalPlayer.PlayerGui
4404
4405SideFrame.Name = "SideFrame"
4406SideFrame.Parent = Energize
4407SideFrame.Active = true
4408SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
4409SideFrame.Draggable = true
4410SideFrame.Position = UDim2.new(0, 376, 0, 125)
4411SideFrame.Size = UDim2.new(0, 460, 0, 32)
4412SideFrame.Visible = false
4413
4414OpenGUI.Name = "OpenGUI"
4415OpenGUI.Parent = SideFrame
4416OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
4417OpenGUI.BackgroundTransparency = 1
4418OpenGUI.Position = UDim2.new(0, 426, 0, 0)
4419OpenGUI.Size = UDim2.new(0, 34, 0, 32)
4420OpenGUI.Font = Enum.Font.SourceSans
4421OpenGUI.FontSize = Enum.FontSize.Size48
4422OpenGUI.Text = "X"
4423OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0)
4424OpenGUI.TextSize = 40
4425OpenGUI.TextWrapped = true
4426
4427SideFrameTitle.Name = "SideFrameTitle"
4428SideFrameTitle.Parent = SideFrame
4429SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1)
4430SideFrameTitle.BackgroundTransparency = 1
4431SideFrameTitle.Position = UDim2.new(0, 170, 0, 0)
4432SideFrameTitle.Size = UDim2.new(0, 119, 0, 31)
4433SideFrameTitle.Font = Enum.Font.Arial
4434SideFrameTitle.FontSize = Enum.FontSize.Size24
4435SideFrameTitle.Text = "¦Energize¦"
4436SideFrameTitle.TextSize = 21
4437SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882)
4438SideFrameTitle.TextStrokeTransparency = 0.69999998807907
4439
4440MainFrame.Name = "MainFrame"
4441MainFrame.Parent = Energize
4442MainFrame.Active = true
4443MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
4444MainFrame.BackgroundTransparency = 1
4445MainFrame.Draggable = true
4446MainFrame.Position = UDim2.new(0, 376, 0, 125)
4447MainFrame.Size = UDim2.new(0, 444, 0, 280)
4448
4449GuiBottomFrame.Name = "Gui BottomFrame"
4450GuiBottomFrame.Parent = MainFrame
4451GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
4452GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
4453GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247)
4454GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32)
4455
4456Credits.Name = "Credits"
4457Credits.Parent = GuiBottomFrame
4458Credits.BackgroundColor3 = Color3.new(1, 1, 1)
4459Credits.BackgroundTransparency = 1
4460Credits.Size = UDim2.new(0, 460, 0, 32)
4461Credits.FontSize = Enum.FontSize.Size14
4462Credits.Text = "By illremember ¦FE Animations Gui"
4463Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608)
4464Credits.TextSize = 14
4465Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726)
4466Credits.TextStrokeTransparency = 0.69999998807907
4467Credits.TextWrapped = true
4468
4469ScrollingFrame.Parent = MainFrame
4470ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
4471ScrollingFrame.Position = UDim2.new(0, 0, 0, 32)
4472ScrollingFrame.Size = UDim2.new(0, 460, 0, 215)
4473ScrollingFrame.ScrollBarThickness = 13
4474
4475FullSwing.Name = "FullSwing"
4476FullSwing.Parent = ScrollingFrame
4477FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4478FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4479FullSwing.Position = UDim2.new(0, 17, 0, 322)
4480FullSwing.Size = UDim2.new(0, 119, 0, 34)
4481FullSwing.Font = Enum.Font.Highway
4482FullSwing.FontSize = Enum.FontSize.Size24
4483FullSwing.Text = "Full Swing"
4484FullSwing.TextSize = 20
4485FullSwing.TextWrapped = true
4486
4487GlitchLevitate.Name = "GlitchLevitate"
4488GlitchLevitate.Parent = ScrollingFrame
4489GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4490GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4491GlitchLevitate.Position = UDim2.new(0, 319, 0, 322)
4492GlitchLevitate.Size = UDim2.new(0, 119, 0, 34)
4493GlitchLevitate.Font = Enum.Font.Highway
4494GlitchLevitate.FontSize = Enum.FontSize.Size24
4495GlitchLevitate.Text = "Glitch Levitate"
4496GlitchLevitate.TextSize = 20
4497GlitchLevitate.TextWrapped = true
4498
4499MoonDance.Name = "MoonDance"
4500MoonDance.Parent = ScrollingFrame
4501MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4502MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4503MoonDance.Position = UDim2.new(0, 319, 0, 280)
4504MoonDance.Size = UDim2.new(0, 119, 0, 34)
4505MoonDance.Font = Enum.Font.Highway
4506MoonDance.FontSize = Enum.FontSize.Size24
4507MoonDance.Text = "Moon Dance"
4508MoonDance.TextSize = 20
4509MoonDance.TextWrapped = true
4510
4511FullPunch.Name = "FullPunch"
4512FullPunch.Parent = ScrollingFrame
4513FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4514FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4515FullPunch.Position = UDim2.new(0, 17, 0, 280)
4516FullPunch.Size = UDim2.new(0, 119, 0, 34)
4517FullPunch.Font = Enum.Font.Highway
4518FullPunch.FontSize = Enum.FontSize.Size24
4519FullPunch.Text = "Full Punch"
4520FullPunch.TextSize = 20
4521FullPunch.TextWrapped = true
4522
4523Crouch.Name = "Crouch"
4524Crouch.Parent = ScrollingFrame
4525Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4526Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4527Crouch.Position = UDim2.new(0, 168, 0, 280)
4528Crouch.Size = UDim2.new(0, 119, 0, 34)
4529Crouch.Font = Enum.Font.Highway
4530Crouch.FontSize = Enum.FontSize.Size24
4531Crouch.Text = "Crouch"
4532Crouch.TextSize = 20
4533Crouch.TextWrapped = true
4534
4535SpinDance.Name = "SpinDance"
4536SpinDance.Parent = ScrollingFrame
4537SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4538SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4539SpinDance.Position = UDim2.new(0, 168, 0, 236)
4540SpinDance.Size = UDim2.new(0, 119, 0, 34)
4541SpinDance.Font = Enum.Font.Highway
4542SpinDance.FontSize = Enum.FontSize.Size24
4543SpinDance.Text = "Spin Dance"
4544SpinDance.TextSize = 20
4545SpinDance.TextWrapped = true
4546
4547FloorFaint.Name = "FloorFaint"
4548FloorFaint.Parent = ScrollingFrame
4549FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4550FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4551FloorFaint.Position = UDim2.new(0, 17, 0, 236)
4552FloorFaint.Size = UDim2.new(0, 119, 0, 34)
4553FloorFaint.Font = Enum.Font.Highway
4554FloorFaint.FontSize = Enum.FontSize.Size24
4555FloorFaint.Text = "Floor Faint"
4556FloorFaint.TextSize = 20
4557FloorFaint.TextWrapped = true
4558
4559JumpingJacks.Name = "JumpingJacks"
4560JumpingJacks.Parent = ScrollingFrame
4561JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4562JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4563JumpingJacks.Position = UDim2.new(0, 319, 0, 236)
4564JumpingJacks.Size = UDim2.new(0, 119, 0, 34)
4565JumpingJacks.Font = Enum.Font.Highway
4566JumpingJacks.FontSize = Enum.FontSize.Size24
4567JumpingJacks.Text = "Jumping Jacks"
4568JumpingJacks.TextSize = 20
4569JumpingJacks.TextWrapped = true
4570
4571Spinner.Name = "Spinner"
4572Spinner.Parent = ScrollingFrame
4573Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4574Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4575Spinner.Position = UDim2.new(0, 17, 0, 192)
4576Spinner.Size = UDim2.new(0, 119, 0, 34)
4577Spinner.Font = Enum.Font.Highway
4578Spinner.FontSize = Enum.FontSize.Size24
4579Spinner.Text = "Spinner"
4580Spinner.TextSize = 20
4581Spinner.TextWrapped = true
4582
4583MegaInsane.Name = "MegaInsane"
4584MegaInsane.Parent = ScrollingFrame
4585MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4586MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4587MegaInsane.Position = UDim2.new(0, 168, 0, 192)
4588MegaInsane.Size = UDim2.new(0, 119, 0, 34)
4589MegaInsane.Font = Enum.Font.Highway
4590MegaInsane.FontSize = Enum.FontSize.Size24
4591MegaInsane.Text = "Mega Insane"
4592MegaInsane.TextSize = 20
4593MegaInsane.TextWrapped = true
4594
4595ArmDetach.Name = "ArmDetach"
4596ArmDetach.Parent = ScrollingFrame
4597ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4598ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4599ArmDetach.Position = UDim2.new(0, 319, 0, 192)
4600ArmDetach.Size = UDim2.new(0, 119, 0, 34)
4601ArmDetach.Font = Enum.Font.Highway
4602ArmDetach.FontSize = Enum.FontSize.Size24
4603ArmDetach.Text = "Arm Detach"
4604ArmDetach.TextSize = 20
4605ArmDetach.TextWrapped = true
4606
4607WeirdMove.Name = "WeirdMove"
4608WeirdMove.Parent = ScrollingFrame
4609WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4610WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4611WeirdMove.Position = UDim2.new(0, 168, 0, 148)
4612WeirdMove.Size = UDim2.new(0, 119, 0, 34)
4613WeirdMove.Font = Enum.Font.Highway
4614WeirdMove.FontSize = Enum.FontSize.Size24
4615WeirdMove.Text = "Weird Move"
4616WeirdMove.TextSize = 20
4617WeirdMove.TextWrapped = true
4618
4619Faint.Name = "Faint"
4620Faint.Parent = ScrollingFrame
4621Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4622Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4623Faint.Position = UDim2.new(0, 17, 0, 148)
4624Faint.Size = UDim2.new(0, 119, 0, 34)
4625Faint.Font = Enum.Font.Highway
4626Faint.FontSize = Enum.FontSize.Size24
4627Faint.Text = "Faint"
4628Faint.TextSize = 20
4629Faint.TextWrapped = true
4630
4631CloneIllusion.Name = "CloneIllusion"
4632CloneIllusion.Parent = ScrollingFrame
4633CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4634CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4635CloneIllusion.Position = UDim2.new(0, 319, 0, 148)
4636CloneIllusion.Size = UDim2.new(0, 119, 0, 34)
4637CloneIllusion.Font = Enum.Font.Highway
4638CloneIllusion.FontSize = Enum.FontSize.Size24
4639CloneIllusion.Text = "Clone Illusion"
4640CloneIllusion.TextSize = 20
4641CloneIllusion.TextWrapped = true
4642
4643Levitate.Name = "Levitate"
4644Levitate.Parent = ScrollingFrame
4645Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4646Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4647Levitate.Position = UDim2.new(0, 17, 0, 104)
4648Levitate.Size = UDim2.new(0, 119, 0, 34)
4649Levitate.Font = Enum.Font.Highway
4650Levitate.FontSize = Enum.FontSize.Size24
4651Levitate.Text = "Levitate"
4652Levitate.TextSize = 20
4653Levitate.TextWrapped = true
4654
4655DinoWalk.Name = "DinoWalk"
4656DinoWalk.Parent = ScrollingFrame
4657DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4658DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4659DinoWalk.Position = UDim2.new(0, 168, 0, 104)
4660DinoWalk.Size = UDim2.new(0, 119, 0, 34)
4661DinoWalk.Font = Enum.Font.Highway
4662DinoWalk.FontSize = Enum.FontSize.Size24
4663DinoWalk.Text = "Dino Walk"
4664DinoWalk.TextSize = 20
4665DinoWalk.TextWrapped = true
4666
4667FloorCrawl.Name = "FloorCrawl"
4668FloorCrawl.Parent = ScrollingFrame
4669FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4670FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4671FloorCrawl.Position = UDim2.new(0, 319, 0, 104)
4672FloorCrawl.Size = UDim2.new(0, 119, 0, 34)
4673FloorCrawl.Font = Enum.Font.Highway
4674FloorCrawl.FontSize = Enum.FontSize.Size24
4675FloorCrawl.Text = "Floor Crawl"
4676FloorCrawl.TextSize = 20
4677FloorCrawl.TextWrapped = true
4678
4679SwordSlam.Name = "SwordSlam"
4680SwordSlam.Parent = ScrollingFrame
4681SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4682SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4683SwordSlam.Position = UDim2.new(0, 319, 0, 60)
4684SwordSlam.Size = UDim2.new(0, 119, 0, 34)
4685SwordSlam.Font = Enum.Font.Highway
4686SwordSlam.FontSize = Enum.FontSize.Size24
4687SwordSlam.Text = "Sword Slam"
4688SwordSlam.TextSize = 20
4689SwordSlam.TextWrapped = true
4690
4691LoopHead.Name = "LoopHead"
4692LoopHead.Parent = ScrollingFrame
4693LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4694LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4695LoopHead.Position = UDim2.new(0, 168, 0, 60)
4696LoopHead.Size = UDim2.new(0, 119, 0, 34)
4697LoopHead.Font = Enum.Font.Highway
4698LoopHead.FontSize = Enum.FontSize.Size24
4699LoopHead.Text = "Loop Head"
4700LoopHead.TextSize = 20
4701LoopHead.TextWrapped = true
4702
4703HeroJump.Name = "HeroJump"
4704HeroJump.Parent = ScrollingFrame
4705HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4706HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4707HeroJump.Position = UDim2.new(0, 17, 0, 60)
4708HeroJump.Size = UDim2.new(0, 119, 0, 34)
4709HeroJump.Font = Enum.Font.Highway
4710HeroJump.FontSize = Enum.FontSize.Size24
4711HeroJump.Text = "Hero Jump"
4712HeroJump.TextSize = 20
4713HeroJump.TextWrapped = true
4714
4715Insane.Name = "Insane"
4716Insane.Parent = ScrollingFrame
4717Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4718Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4719Insane.Position = UDim2.new(0, 319, 0, 16)
4720Insane.Size = UDim2.new(0, 119, 0, 34)
4721Insane.Font = Enum.Font.Highway
4722Insane.FontSize = Enum.FontSize.Size24
4723Insane.Text = "Insane"
4724Insane.TextSize = 20
4725Insane.TextWrapped = true
4726
4727FloatingHead.Name = "FloatingHead"
4728FloatingHead.Parent = ScrollingFrame
4729FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4730FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4731FloatingHead.Position = UDim2.new(0, 168, 0, 16)
4732FloatingHead.Size = UDim2.new(0, 119, 0, 34)
4733FloatingHead.Font = Enum.Font.Highway
4734FloatingHead.FontSize = Enum.FontSize.Size24
4735FloatingHead.Text = "Floating Head"
4736FloatingHead.TextSize = 20
4737FloatingHead.TextWrapped = true
4738
4739HeadThrow.Name = "HeadThrow"
4740HeadThrow.Parent = ScrollingFrame
4741HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4742HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4743HeadThrow.Position = UDim2.new(0, 17, 0, 16)
4744HeadThrow.Size = UDim2.new(0, 119, 0, 34)
4745HeadThrow.Font = Enum.Font.Highway
4746HeadThrow.FontSize = Enum.FontSize.Size24
4747HeadThrow.Text = "Head Throw"
4748HeadThrow.TextSize = 20
4749HeadThrow.TextWrapped = true
4750
4751MovingDance.Name = "MovingDance"
4752MovingDance.Parent = ScrollingFrame
4753MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4754MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4755MovingDance.Position = UDim2.new(0, 168, 0, 324)
4756MovingDance.Size = UDim2.new(0, 119, 0, 34)
4757MovingDance.Font = Enum.Font.Highway
4758MovingDance.FontSize = Enum.FontSize.Size24
4759MovingDance.Text = "Moving Dance"
4760MovingDance.TextSize = 20
4761MovingDance.TextWrapped = true
4762
4763SuperPunch.Name = "SuperPunch"
4764SuperPunch.Parent = ScrollingFrame
4765SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4766SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4767SuperPunch.Position = UDim2.new(0, 168, 0, 366)
4768SuperPunch.Size = UDim2.new(0, 119, 0, 34)
4769SuperPunch.Font = Enum.Font.Highway
4770SuperPunch.FontSize = Enum.FontSize.Size24
4771SuperPunch.Text = "Super Punch"
4772SuperPunch.TextSize = 20
4773SuperPunch.TextWrapped = true
4774
4775ArmTurbine.Name = "ArmTurbine"
4776ArmTurbine.Parent = ScrollingFrame
4777ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4778ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4779ArmTurbine.Position = UDim2.new(0, 319, 0, 366)
4780ArmTurbine.Size = UDim2.new(0, 119, 0, 34)
4781ArmTurbine.Font = Enum.Font.Highway
4782ArmTurbine.FontSize = Enum.FontSize.Size24
4783ArmTurbine.Text = "Arm Turbine"
4784ArmTurbine.TextSize = 20
4785ArmTurbine.TextWrapped = true
4786
4787Dab.Name = "Dab"
4788Dab.Parent = ScrollingFrame
4789Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4790Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4791Dab.Position = UDim2.new(0, 17, 0, 366)
4792Dab.Size = UDim2.new(0, 119, 0, 34)
4793Dab.Font = Enum.Font.Highway
4794Dab.FontSize = Enum.FontSize.Size24
4795Dab.Text = "Dab"
4796Dab.TextSize = 20
4797Dab.TextWrapped = true
4798
4799FloatSit.Name = "FloatSit"
4800FloatSit.Parent = ScrollingFrame
4801FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4802FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4803FloatSit.Position = UDim2.new(0, 168, 0, 410)
4804FloatSit.Size = UDim2.new(0, 119, 0, 34)
4805FloatSit.Font = Enum.Font.Highway
4806FloatSit.FontSize = Enum.FontSize.Size24
4807FloatSit.Text = "Float Sit"
4808FloatSit.TextSize = 20
4809FloatSit.TextWrapped = true
4810
4811SuperFaint.Name = "SuperFaint"
4812SuperFaint.Parent = ScrollingFrame
4813SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4814SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4815SuperFaint.Position = UDim2.new(0, 17, 0, 498)
4816SuperFaint.Size = UDim2.new(0, 119, 0, 34)
4817SuperFaint.Font = Enum.Font.Highway
4818SuperFaint.FontSize = Enum.FontSize.Size24
4819SuperFaint.Text = "Super Faint"
4820SuperFaint.TextSize = 20
4821SuperFaint.TextWrapped = true
4822
4823BarrelRoll.Name = "BarrelRoll"
4824BarrelRoll.Parent = ScrollingFrame
4825BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4826BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4827BarrelRoll.Position = UDim2.new(0, 319, 0, 410)
4828BarrelRoll.Size = UDim2.new(0, 119, 0, 34)
4829BarrelRoll.Font = Enum.Font.Highway
4830BarrelRoll.FontSize = Enum.FontSize.Size24
4831BarrelRoll.Text = "Barrel Roll"
4832BarrelRoll.TextSize = 20
4833BarrelRoll.TextWrapped = true
4834
4835Scared.Name = "Scared"
4836Scared.Parent = ScrollingFrame
4837Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4838Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4839Scared.Position = UDim2.new(0, 319, 0, 454)
4840Scared.Size = UDim2.new(0, 119, 0, 34)
4841Scared.Font = Enum.Font.Highway
4842Scared.FontSize = Enum.FontSize.Size24
4843Scared.Text = "Scared"
4844Scared.TextSize = 20
4845Scared.TextWrapped = true
4846
4847InsaneArms.Name = "InsaneArms"
4848InsaneArms.Parent = ScrollingFrame
4849InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4850InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4851InsaneArms.Position = UDim2.new(0, 17, 0, 454)
4852InsaneArms.Size = UDim2.new(0, 119, 0, 34)
4853InsaneArms.Font = Enum.Font.Highway
4854InsaneArms.FontSize = Enum.FontSize.Size24
4855InsaneArms.Text = "Insane Arms"
4856InsaneArms.TextSize = 20
4857InsaneArms.TextWrapped = true
4858
4859SwordSlice.Name = "SwordSlice"
4860SwordSlice.Parent = ScrollingFrame
4861SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4862SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4863SwordSlice.Position = UDim2.new(0, 168, 0, 454)
4864SwordSlice.Size = UDim2.new(0, 119, 0, 34)
4865SwordSlice.Font = Enum.Font.Highway
4866SwordSlice.FontSize = Enum.FontSize.Size24
4867SwordSlice.Text = "Sword Slice"
4868SwordSlice.TextSize = 20
4869SwordSlice.TextWrapped = true
4870
4871SpinDance2.Name = "SpinDance2"
4872SpinDance2.Parent = ScrollingFrame
4873SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4874SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4875SpinDance2.Position = UDim2.new(0, 168, 0, 498)
4876SpinDance2.Size = UDim2.new(0, 119, 0, 34)
4877SpinDance2.Font = Enum.Font.Highway
4878SpinDance2.FontSize = Enum.FontSize.Size24
4879SpinDance2.Text = "Spin Dance 2"
4880SpinDance2.TextSize = 20
4881SpinDance2.TextWrapped = true
4882
4883BowDown.Name = "BowDown"
4884BowDown.Parent = ScrollingFrame
4885BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4886BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4887BowDown.Position = UDim2.new(0, 319, 0, 498)
4888BowDown.Size = UDim2.new(0, 119, 0, 34)
4889BowDown.Font = Enum.Font.Highway
4890BowDown.FontSize = Enum.FontSize.Size24
4891BowDown.Text = "Bow Down"
4892BowDown.TextSize = 20
4893BowDown.TextWrapped = true
4894
4895LoopSlam.Name = "LoopSlam"
4896LoopSlam.Parent = ScrollingFrame
4897LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627)
4898LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4899LoopSlam.Position = UDim2.new(0, 17, 0, 410)
4900LoopSlam.Size = UDim2.new(0, 119, 0, 34)
4901LoopSlam.Font = Enum.Font.Highway
4902LoopSlam.FontSize = Enum.FontSize.Size24
4903LoopSlam.Text = "Loop Slam"
4904LoopSlam.TextSize = 20
4905LoopSlam.TextWrapped = true
4906
4907GuiTopFrame.Name = "Gui TopFrame"
4908GuiTopFrame.Parent = MainFrame
4909GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412)
4910GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
4911GuiTopFrame.Size = UDim2.new(0, 460, 0, 32)
4912
4913CloseGUI.Name = "CloseGUI"
4914CloseGUI.Parent = GuiTopFrame
4915CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
4916CloseGUI.BackgroundTransparency = 1
4917CloseGUI.Position = UDim2.new(0, 426, 0, 0)
4918CloseGUI.Size = UDim2.new(0, 34, 0, 32)
4919CloseGUI.Font = Enum.Font.SourceSans
4920CloseGUI.FontSize = Enum.FontSize.Size48
4921CloseGUI.Text = "X"
4922CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0)
4923CloseGUI.TextSize = 40
4924CloseGUI.TextWrapped = true
4925
4926Title.Name = "Title"
4927Title.Parent = GuiTopFrame
4928Title.BackgroundColor3 = Color3.new(1, 1, 1)
4929Title.BackgroundTransparency = 1
4930Title.Size = UDim2.new(0, 460, 0, 32)
4931Title.FontSize = Enum.FontSize.Size14
4932Title.Text = "¦Energize¦"
4933Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
4934Title.TextSize = 14
4935Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1)
4936Title.TextStrokeTransparency = 0.69999998807907
4937Title.TextWrapped = true
4938
4939CheckR.Name = "CheckR"
4940CheckR.Parent = GuiTopFrame
4941CheckR.BackgroundColor3 = Color3.new(1, 1, 1)
4942CheckR.BackgroundTransparency = 1
4943CheckR.Size = UDim2.new(0, 171, 0, 32)
4944CheckR.Font = Enum.Font.SourceSansBold
4945CheckR.FontSize = Enum.FontSize.Size14
4946CheckR.Text = "Text"
4947CheckR.TextScaled = true
4948CheckR.TextSize = 14
4949CheckR.TextWrapped = true
4950
4951ScrollingFrameR15.Name = "ScrollingFrameR15"
4952ScrollingFrameR15.Parent = MainFrame
4953ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706)
4954ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32)
4955ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215)
4956ScrollingFrameR15.Visible = false
4957ScrollingFrameR15.ScrollBarThickness = 13
4958
4959CrazySlash.Name = "CrazySlash"
4960CrazySlash.Parent = ScrollingFrameR15
4961CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
4962CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4963CrazySlash.Position = UDim2.new(0, 17, 0, 16)
4964CrazySlash.Size = UDim2.new(0, 119, 0, 34)
4965CrazySlash.Font = Enum.Font.Highway
4966CrazySlash.FontSize = Enum.FontSize.Size24
4967CrazySlash.Text = "CrazySlash"
4968CrazySlash.TextSize = 20
4969CrazySlash.TextWrapped = true
4970
4971Open.Name = "Open"
4972Open.Parent = ScrollingFrameR15
4973Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
4974Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4975Open.Position = UDim2.new(0, 168, 0, 16)
4976Open.Size = UDim2.new(0, 119, 0, 34)
4977Open.Font = Enum.Font.Highway
4978Open.FontSize = Enum.FontSize.Size24
4979Open.Text = "Open"
4980Open.TextSize = 20
4981Open.TextWrapped = true
4982
4983R15Spinner.Name = "R15Spinner"
4984R15Spinner.Parent = ScrollingFrameR15
4985R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
4986R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4987R15Spinner.Position = UDim2.new(0, 17, 0, 60)
4988R15Spinner.Size = UDim2.new(0, 119, 0, 34)
4989R15Spinner.Font = Enum.Font.Highway
4990R15Spinner.FontSize = Enum.FontSize.Size24
4991R15Spinner.Text = "Spinner"
4992R15Spinner.TextSize = 20
4993R15Spinner.TextWrapped = true
4994
4995ArmsOut.Name = "ArmsOut"
4996ArmsOut.Parent = ScrollingFrameR15
4997ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
4998ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
4999ArmsOut.Position = UDim2.new(0, 319, 0, 16)
5000ArmsOut.Size = UDim2.new(0, 119, 0, 34)
5001ArmsOut.Font = Enum.Font.Highway
5002ArmsOut.FontSize = Enum.FontSize.Size24
5003ArmsOut.Text = "ArmsOut"
5004ArmsOut.TextSize = 20
5005ArmsOut.TextWrapped = true
5006
5007FloatSlash.Name = "FloatSlash"
5008FloatSlash.Parent = ScrollingFrameR15
5009FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5010FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5011FloatSlash.Position = UDim2.new(0, 168, 0, 148)
5012FloatSlash.Size = UDim2.new(0, 119, 0, 34)
5013FloatSlash.Font = Enum.Font.Highway
5014FloatSlash.FontSize = Enum.FontSize.Size24
5015FloatSlash.Text = "FloatSlash"
5016FloatSlash.TextSize = 20
5017FloatSlash.TextWrapped = true
5018
5019WeirdZombie.Name = "WeirdZombie"
5020WeirdZombie.Parent = ScrollingFrameR15
5021WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5022WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5023WeirdZombie.Position = UDim2.new(0, 17, 0, 148)
5024WeirdZombie.Size = UDim2.new(0, 119, 0, 34)
5025WeirdZombie.Font = Enum.Font.Highway
5026WeirdZombie.FontSize = Enum.FontSize.Size24
5027WeirdZombie.Text = "WeirdZombie"
5028WeirdZombie.TextSize = 20
5029WeirdZombie.TextWrapped = true
5030
5031DownSlash.Name = "DownSlash"
5032DownSlash.Parent = ScrollingFrameR15
5033DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5034DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5035DownSlash.Position = UDim2.new(0, 319, 0, 148)
5036DownSlash.Size = UDim2.new(0, 119, 0, 34)
5037DownSlash.Font = Enum.Font.Highway
5038DownSlash.FontSize = Enum.FontSize.Size24
5039DownSlash.Text = "DownSlash"
5040DownSlash.TextSize = 20
5041DownSlash.TextWrapped = true
5042
5043Pull.Name = "Pull"
5044Pull.Parent = ScrollingFrameR15
5045Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5046Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5047Pull.Position = UDim2.new(0, 17, 0, 104)
5048Pull.Size = UDim2.new(0, 119, 0, 34)
5049Pull.Font = Enum.Font.Highway
5050Pull.FontSize = Enum.FontSize.Size24
5051Pull.Text = "Pull"
5052Pull.TextSize = 20
5053Pull.TextWrapped = true
5054
5055CircleArm.Name = "CircleArm"
5056CircleArm.Parent = ScrollingFrameR15
5057CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5058CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5059CircleArm.Position = UDim2.new(0, 168, 0, 104)
5060CircleArm.Size = UDim2.new(0, 119, 0, 34)
5061CircleArm.Font = Enum.Font.Highway
5062CircleArm.FontSize = Enum.FontSize.Size24
5063CircleArm.Text = "CircleArm"
5064CircleArm.TextSize = 20
5065CircleArm.TextWrapped = true
5066
5067Bend.Name = "Bend"
5068Bend.Parent = ScrollingFrameR15
5069Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5070Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5071Bend.Position = UDim2.new(0, 319, 0, 104)
5072Bend.Size = UDim2.new(0, 119, 0, 34)
5073Bend.Font = Enum.Font.Highway
5074Bend.FontSize = Enum.FontSize.Size24
5075Bend.Text = "Bend"
5076Bend.TextSize = 20
5077Bend.TextWrapped = true
5078
5079RotateSlash.Name = "RotateSlash"
5080RotateSlash.Parent = ScrollingFrameR15
5081RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5082RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5083RotateSlash.Position = UDim2.new(0, 319, 0, 60)
5084RotateSlash.Size = UDim2.new(0, 119, 0, 34)
5085RotateSlash.Font = Enum.Font.Highway
5086RotateSlash.FontSize = Enum.FontSize.Size24
5087RotateSlash.Text = "RotateSlash"
5088RotateSlash.TextSize = 20
5089RotateSlash.TextWrapped = true
5090
5091FlingArms.Name = "FlingArms"
5092FlingArms.Parent = ScrollingFrameR15
5093FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157)
5094FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
5095FlingArms.Position = UDim2.new(0, 168, 0, 60)
5096FlingArms.Size = UDim2.new(0, 119, 0, 34)
5097FlingArms.Font = Enum.Font.Highway
5098FlingArms.FontSize = Enum.FontSize.Size24
5099FlingArms.Text = "FlingArms"
5100FlingArms.TextSize = 20
5101FlingArms.TextWrapped = true
5102
5103-- Buttons
5104col = Color3.new(0.886275, 0.776471, 0.368627)
5105loc = Color3.new(1, 0.906471, 0.568627)
5106rcol = Color3.new(0.682353, 0.701961, 0.792157)
5107rloc = Color3.new(0.882353, 0.901961, 0.992157)
5108
5109CloseGUI.MouseButton1Click:connect(function()
5110MainFrame.Visible = false
5111SideFrame.Visible = true
5112SideFrame.Position = MainFrame.Position
5113end)
5114
5115OpenGUI.MouseButton1Click:connect(function()
5116MainFrame.Visible = true
5117SideFrame.Visible = false
5118MainFrame.Position = SideFrame.Position
5119end)
5120
5121if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then
5122 ScrollingFrame.Visible = false
5123 ScrollingFrameR15.Visible = true
5124 CheckR.Text = "Showing R15 Animations"
5125else
5126 ScrollingFrame.Visible = true
5127 ScrollingFrameR15.Visible = false
5128 CheckR.Text = "Showing R6 Animations"
5129end
5130
5131local Anim = Instance.new("Animation")
5132Anim.AnimationId = "rbxassetid://35154961"
5133local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5134local HeadThrowACTIVE = false
5135HeadThrow.MouseButton1Click:connect(function()
5136 HeadThrowACTIVE = not HeadThrowACTIVE
5137 if HeadThrowACTIVE then
5138 HeadThrow.BackgroundColor3 = loc
5139 while wait() do
5140 if track.IsPlaying == false then
5141 if HeadThrowACTIVE then
5142 track:Play(.1, 1, 1)
5143 end
5144 end
5145 end
5146 else
5147 track:Stop()
5148 HeadThrow.BackgroundColor3 = col
5149 end
5150end)
5151
5152local Anim = Instance.new("Animation")
5153Anim.AnimationId = "rbxassetid://121572214"
5154local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5155local FloatingHeadACTIVE = false
5156FloatingHead.MouseButton1Click:connect(function()
5157 FloatingHeadACTIVE = not FloatingHeadACTIVE
5158 if FloatingHeadACTIVE then
5159 track:Play(.1, 1, 1)
5160 FloatingHead.BackgroundColor3 = loc
5161 else
5162 track:Stop()
5163 FloatingHead.BackgroundColor3 = col
5164 end
5165end)
5166
5167local Anim = Instance.new("Animation")
5168Anim.AnimationId = "rbxassetid://182724289"
5169local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5170local CrouchACTIVE = false
5171Crouch.MouseButton1Click:connect(function()
5172 CrouchACTIVE = not CrouchACTIVE
5173 if CrouchACTIVE then
5174 track:Play(.1, 1, 1)
5175 Crouch.BackgroundColor3 = loc
5176 else
5177 track:Stop()
5178 Crouch.BackgroundColor3 = col
5179 end
5180end)
5181
5182local Anim = Instance.new("Animation")
5183Anim.AnimationId = "rbxassetid://282574440"
5184local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5185local FloorCrawlACTIVE = false
5186FloorCrawl.MouseButton1Click:connect(function()
5187 FloorCrawlACTIVE = not FloorCrawlACTIVE
5188 if FloorCrawlACTIVE then
5189 track:Play(.1, 1, 1)
5190 FloorCrawl.BackgroundColor3 = loc
5191 else
5192 track:Stop()
5193 FloorCrawl.BackgroundColor3 = col
5194 end
5195end)
5196
5197local Anim = Instance.new("Animation")
5198Anim.AnimationId = "rbxassetid://204328711"
5199local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5200local DinoWalkACTIVE = false
5201DinoWalk.MouseButton1Click:connect(function()
5202 DinoWalkACTIVE = not DinoWalkACTIVE
5203 if DinoWalkACTIVE then
5204 track:Play(.1, 1, 1)
5205 DinoWalk.BackgroundColor3 = loc
5206 else
5207 track:Stop()
5208 DinoWalk.BackgroundColor3 = col
5209 end
5210end)
5211
5212local Anim = Instance.new("Animation")
5213Anim.AnimationId = "rbxassetid://429681631"
5214local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5215local JumpingJacksACTIVE = false
5216JumpingJacks.MouseButton1Click:connect(function()
5217 JumpingJacksACTIVE = not JumpingJacksACTIVE
5218 if JumpingJacksACTIVE then
5219 track:Play(.1, 1, 1)
5220 JumpingJacks.BackgroundColor3 = loc
5221 else
5222 track:Stop()
5223 JumpingJacks.BackgroundColor3 = col
5224 end
5225end)
5226
5227local Anim = Instance.new("Animation")
5228Anim.AnimationId = "rbxassetid://35154961"
5229local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5230local LoopHeadACTIVE = false
5231LoopHead.MouseButton1Click:connect(function()
5232 LoopHeadACTIVE = not LoopHeadACTIVE
5233 if LoopHeadACTIVE then
5234 LoopHead.BackgroundColor3 = loc
5235 while wait() do
5236 if track.IsPlaying == false then
5237 if LoopHeadACTIVE then
5238 track:Play(.5, 1, 1e6)
5239 end
5240 end
5241 end
5242 else
5243 track:Stop()
5244 LoopHead.BackgroundColor3 = col
5245 end
5246end)
5247
5248local Anim = Instance.new("Animation")
5249Anim.AnimationId = "rbxassetid://184574340"
5250local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5251local HeroJumpACTIVE = false
5252HeroJump.MouseButton1Click:connect(function()
5253 HeroJumpACTIVE = not HeroJumpACTIVE
5254 if HeroJumpACTIVE then
5255 HeroJump.BackgroundColor3 = loc
5256 while wait() do
5257 if track.IsPlaying == false then
5258 if HeroJumpACTIVE then
5259 track:Play(.1, 1, 1)
5260 end
5261 end
5262 end
5263 else
5264 track:Stop()
5265 HeroJump.BackgroundColor3 = col
5266 end
5267end)
5268
5269local Anim = Instance.new("Animation")
5270Anim.AnimationId = "rbxassetid://181526230"
5271local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5272local FaintACTIVE = false
5273Faint.MouseButton1Click:connect(function()
5274 FaintACTIVE = not FaintACTIVE
5275 if FaintACTIVE then
5276 track:Play(.1, 1, 1)
5277 Faint.BackgroundColor3 = loc
5278 else
5279 track:Stop()
5280 Faint.BackgroundColor3 = col
5281 end
5282end)
5283
5284local Anim = Instance.new("Animation")
5285Anim.AnimationId = "rbxassetid://181525546"
5286local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5287local FloorFaintACTIVE = false
5288FloorFaint.MouseButton1Click:connect(function()
5289 FloorFaintACTIVE = not FloorFaintACTIVE
5290 if FloorFaintACTIVE then
5291 FloorFaint.BackgroundColor3 = loc
5292 while wait() do
5293 if track.IsPlaying == false then
5294 if FloorFaintACTIVE then
5295 track:Play(.1, 1, 2)
5296 end
5297 end
5298 end
5299 else
5300 track:Stop()
5301 FloorFaint.BackgroundColor3 = col
5302 end
5303end)
5304
5305local Anim = Instance.new("Animation")
5306Anim.AnimationId = "rbxassetid://181525546"
5307local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5308local SuperFaintACTIVE = false
5309SuperFaint.MouseButton1Click:connect(function()
5310 SuperFaintACTIVE = not SuperFaintACTIVE
5311 if SuperFaintACTIVE then
5312 SuperFaint.BackgroundColor3 = loc
5313 while wait() do
5314 if track.IsPlaying == false then
5315 if SuperFaintACTIVE then
5316 track:Play(.1, 0.5, 40)
5317 end
5318 end
5319 end
5320 else
5321 track:Stop()
5322 SuperFaint.BackgroundColor3 = col
5323 end
5324end)
5325
5326local Anim = Instance.new("Animation")
5327Anim.AnimationId = "rbxassetid://313762630"
5328local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5329local LevitateACTIVE = false
5330Levitate.MouseButton1Click:connect(function()
5331 LevitateACTIVE = not LevitateACTIVE
5332 if LevitateACTIVE then
5333 track:Play(.1, 1, 1)
5334 Levitate.BackgroundColor3 = loc
5335 else
5336 track:Stop()
5337 Levitate.BackgroundColor3 = col
5338 end
5339end)
5340
5341local Anim = Instance.new("Animation")
5342Anim.AnimationId = "rbxassetid://183412246"
5343local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5344local DabACTIVE = false
5345Dab.MouseButton1Click:connect(function()
5346 DabACTIVE = not DabACTIVE
5347 if DabACTIVE then
5348 Dab.BackgroundColor3 = loc
5349 while wait() do
5350 if track.IsPlaying == false then
5351 if DabACTIVE then
5352 track:Play(.1, 1, 1)
5353 end
5354 end
5355 end
5356 else
5357 track:Stop()
5358 Dab.BackgroundColor3 = col
5359 end
5360end)
5361
5362local Anim = Instance.new("Animation")
5363Anim.AnimationId = "rbxassetid://188632011"
5364local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5365local SpinACTIVE = false
5366Spinner.MouseButton1Click:connect(function()
5367 SpinACTIVE = not SpinACTIVE
5368 if SpinACTIVE then
5369 Spinner.BackgroundColor3 = loc
5370 while wait() do
5371 if track.IsPlaying == false then
5372 if SpinACTIVE then
5373 track:Play(.1, 1, 2)
5374 end
5375 end
5376 end
5377 else
5378 track:Stop()
5379 Spinner.BackgroundColor3 = col
5380 end
5381end)
5382
5383local Anim = Instance.new("Animation")
5384Anim.AnimationId = "rbxassetid://179224234"
5385local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5386local FloatSitACTIVE = false
5387FloatSit.MouseButton1Click:connect(function()
5388 FloatSitACTIVE = not FloatSitACTIVE
5389 if FloatSitACTIVE then
5390 track:Play(.1, 1, 1)
5391 FloatSit.BackgroundColor3 = loc
5392 else
5393 track:Stop()
5394 FloatSit.BackgroundColor3 = col
5395 end
5396end)
5397
5398local Anim = Instance.new("Animation")
5399Anim.AnimationId = "rbxassetid://429703734"
5400local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5401local MovingDanceACTIVE = false
5402MovingDance.MouseButton1Click:connect(function()
5403 MovingDanceACTIVE = not MovingDanceACTIVE
5404 if MovingDanceACTIVE then
5405 MovingDance.BackgroundColor3 = loc
5406 while wait() do
5407 if track.IsPlaying == false then
5408 if MovingDanceACTIVE then
5409 track:Play(.1, 1, 1)
5410 end
5411 end
5412 end
5413 else
5414 track:Stop()
5415 MovingDance.BackgroundColor3 = col
5416 end
5417end)
5418
5419local Anim = Instance.new("Animation")
5420Anim.AnimationId = "rbxassetid://215384594"
5421local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5422local WeirdMoveACTIVE = false
5423WeirdMove.MouseButton1Click:connect(function()
5424 WeirdMoveACTIVE = not WeirdMoveACTIVE
5425 if WeirdMoveACTIVE then
5426 track:Play(.1, 1, 1)
5427 WeirdMove.BackgroundColor3 = loc
5428 else
5429 track:Stop()
5430 WeirdMove.BackgroundColor3 = col
5431 end
5432end)
5433
5434local Anim = Instance.new("Animation")
5435Anim.AnimationId = "rbxassetid://215384594"
5436local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5437local CloneIllusionACTIVE = false
5438CloneIllusion.MouseButton1Click:connect(function()
5439 CloneIllusionACTIVE = not CloneIllusionACTIVE
5440 if CloneIllusionACTIVE then
5441 track:Play(.5, 1, 1e7)
5442 CloneIllusion.BackgroundColor3 = loc
5443 else
5444 track:Stop()
5445 CloneIllusion.BackgroundColor3 = col
5446 end
5447end)
5448
5449local Anim = Instance.new("Animation")
5450Anim.AnimationId = "rbxassetid://313762630"
5451local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5452local GlitchLevitateACTIVE = false
5453GlitchLevitate.MouseButton1Click:connect(function()
5454 GlitchLevitateACTIVE = not GlitchLevitateACTIVE
5455 if GlitchLevitateACTIVE then
5456 track:Play(.5, 1, 1e7)
5457 GlitchLevitate.BackgroundColor3 = loc
5458 else
5459 track:Stop()
5460 GlitchLevitate.BackgroundColor3 = col
5461 end
5462end)
5463
5464local Anim = Instance.new("Animation")
5465Anim.AnimationId = "rbxassetid://429730430"
5466local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5467local SpinDanceACTIVE = false
5468SpinDance.MouseButton1Click:connect(function()
5469 SpinDanceACTIVE = not SpinDanceACTIVE
5470 if SpinDanceACTIVE then
5471 SpinDance.BackgroundColor3 = loc
5472 while wait() do
5473 if track.IsPlaying == false then
5474 if SpinDanceACTIVE then
5475 track:Play(.1, 1, 1)
5476 end
5477 end
5478 end
5479 else
5480 track:Stop()
5481 SpinDance.BackgroundColor3 = col
5482 end
5483end)
5484
5485local Anim = Instance.new("Animation")
5486Anim.AnimationId = "rbxassetid://45834924"
5487local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5488local MoonDanceACTIVE = false
5489MoonDance.MouseButton1Click:connect(function()
5490 MoonDanceACTIVE = not MoonDanceACTIVE
5491 if MoonDanceACTIVE then
5492 MoonDance.BackgroundColor3 = loc
5493 while wait() do
5494 if track.IsPlaying == false then
5495 if MoonDanceACTIVE then
5496 track:Play(.1, 1, 1)
5497 end
5498 end
5499 end
5500 else
5501 track:Stop()
5502 MoonDance.BackgroundColor3 = col
5503 end
5504end)
5505
5506local Anim = Instance.new("Animation")
5507Anim.AnimationId = "rbxassetid://204062532"
5508local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5509local FullPunchACTIVE = false
5510FullPunch.MouseButton1Click:connect(function()
5511 FullPunchACTIVE = not FullPunchACTIVE
5512 if FullPunchACTIVE then
5513 FullPunch.BackgroundColor3 = loc
5514 while wait() do
5515 if track.IsPlaying == false then
5516 if FullPunchACTIVE then
5517 track:Play(.1, 1, 1)
5518 end
5519 end
5520 end
5521 else
5522 track:Stop()
5523 FullPunch.BackgroundColor3 = col
5524 end
5525end)
5526
5527local Anim = Instance.new("Animation")
5528Anim.AnimationId = "rbxassetid://186934910"
5529local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5530local SpinDance2ACTIVE = false
5531SpinDance2.MouseButton1Click:connect(function()
5532 SpinDance2ACTIVE = not SpinDance2ACTIVE
5533 if SpinDance2ACTIVE then
5534 SpinDance2.BackgroundColor3 = loc
5535 while wait() do
5536 if track.IsPlaying == false then
5537 if SpinDance2ACTIVE then
5538 track:Play(.1, 1, 1)
5539 end
5540 end
5541 end
5542 else
5543 track:Stop()
5544 SpinDance2.BackgroundColor3 = col
5545 end
5546end)
5547
5548local Anim = Instance.new("Animation")
5549Anim.AnimationId = "rbxassetid://204292303"
5550local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5551local BowDownACTIVE = false
5552BowDown.MouseButton1Click:connect(function()
5553 BowDownACTIVE = not BowDownACTIVE
5554 if BowDownACTIVE then
5555 BowDown.BackgroundColor3 = loc
5556 while wait() do
5557 if track.IsPlaying == false then
5558 if BowDownACTIVE then
5559 track:Play(.1, 1, 3)
5560 end
5561 end
5562 end
5563 else
5564 track:Stop()
5565 BowDown.BackgroundColor3 = col
5566 end
5567end)
5568
5569local Anim = Instance.new("Animation")
5570Anim.AnimationId = "rbxassetid://204295235"
5571local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5572local SwordSlamACTIVE = false
5573SwordSlam.MouseButton1Click:connect(function()
5574 SwordSlamACTIVE = not SwordSlamACTIVE
5575 if SwordSlamACTIVE then
5576 SwordSlam.BackgroundColor3 = loc
5577 while wait() do
5578 if track.IsPlaying == false then
5579 if SwordSlamACTIVE then
5580 track:Play(.1, 1, 1)
5581 end
5582 end
5583 end
5584 else
5585 track:Stop()
5586 SwordSlam.BackgroundColor3 = col
5587 end
5588end)
5589
5590local Anim = Instance.new("Animation")
5591Anim.AnimationId = "rbxassetid://204295235"
5592local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5593local LoopSlamACTIVE = false
5594LoopSlam.MouseButton1Click:connect(function()
5595 LoopSlamACTIVE = not LoopSlamACTIVE
5596 if LoopSlamACTIVE then
5597 LoopSlam.BackgroundColor3 = loc
5598 while wait() do
5599 if track.IsPlaying == false then
5600 if LoopSlamACTIVE then
5601 track:Play(.1, 1, 1e4)
5602 end
5603 end
5604 end
5605 else
5606 track:Stop()
5607 LoopSlam.BackgroundColor3 = col
5608 end
5609end)
5610
5611local Anim = Instance.new("Animation")
5612Anim.AnimationId = "rbxassetid://184574340"
5613local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5614local MegaInsaneACTIVE = false
5615MegaInsane.MouseButton1Click:connect(function()
5616 MegaInsaneACTIVE = not MegaInsaneACTIVE
5617 if MegaInsaneACTIVE then
5618 MegaInsane.BackgroundColor3 = loc
5619 while wait() do
5620 if track.IsPlaying == false then
5621 if MegaInsaneACTIVE then
5622 track:Play(.1, 0.5, 40)
5623 end
5624 end
5625 end
5626 else
5627 track:Stop()
5628 MegaInsane.BackgroundColor3 = col
5629 end
5630end)
5631
5632local Anim = Instance.new("Animation")
5633Anim.AnimationId = "rbxassetid://126753849"
5634local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5635local SuperPunchACTIVE = false
5636SuperPunch.MouseButton1Click:connect(function()
5637 SuperPunchACTIVE = not SuperPunchACTIVE
5638 if SuperPunchACTIVE then
5639 SuperPunch.BackgroundColor3 = loc
5640 while wait() do
5641 if track.IsPlaying == false then
5642 if SuperPunchACTIVE then
5643 track:Play(.1, 1, 3)
5644 end
5645 end
5646 end
5647 else
5648 track:Stop()
5649 SuperPunch.BackgroundColor3 = col
5650 end
5651end)
5652
5653local Anim = Instance.new("Animation")
5654Anim.AnimationId = "rbxassetid://218504594"
5655local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5656local FullSwingACTIVE = false
5657FullSwing.MouseButton1Click:connect(function()
5658 FullSwingACTIVE = not FullSwingACTIVE
5659 if FullSwingACTIVE then
5660 FullSwing.BackgroundColor3 = loc
5661 while wait() do
5662 if track.IsPlaying == false then
5663 if FullSwingACTIVE then
5664 track:Play(.1, 1, 1)
5665 end
5666 end
5667 end
5668 else
5669 track:Stop()
5670 FullSwing.BackgroundColor3 = col
5671 end
5672end)
5673
5674local Anim = Instance.new("Animation")
5675Anim.AnimationId = "rbxassetid://259438880"
5676local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5677local ArmTurbineACTIVE = false
5678ArmTurbine.MouseButton1Click:connect(function()
5679 ArmTurbineACTIVE = not ArmTurbineACTIVE
5680 if ArmTurbineACTIVE then
5681 track:Play(.1, 1, 1e3)
5682 ArmTurbine.BackgroundColor3 = loc
5683 else
5684 track:Stop()
5685 ArmTurbine.BackgroundColor3 = col
5686 end
5687end)
5688
5689local Anim = Instance.new("Animation")
5690Anim.AnimationId = "rbxassetid://136801964"
5691local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5692local BarrelRollACTIVE = false
5693BarrelRoll.MouseButton1Click:connect(function()
5694 BarrelRollACTIVE = not BarrelRollACTIVE
5695 if BarrelRollACTIVE then
5696 BarrelRoll.BackgroundColor3 = loc
5697 while wait() do
5698 if track.IsPlaying == false then
5699 if BarrelRollACTIVE then
5700 track:Play(.1, 1, 1)
5701 end
5702 end
5703 end
5704 else
5705 track:Stop()
5706 BarrelRoll.BackgroundColor3 = col
5707 end
5708end)
5709
5710local Anim = Instance.new("Animation")
5711Anim.AnimationId = "rbxassetid://180612465"
5712local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5713local ScaredACTIVE = false
5714Scared.MouseButton1Click:connect(function()
5715 ScaredACTIVE = not ScaredACTIVE
5716 if ScaredACTIVE then
5717 Scared.BackgroundColor3 = loc
5718 while wait() do
5719 if track.IsPlaying == false then
5720 if ScaredACTIVE then
5721 track:Play(.1, 1, 1)
5722 end
5723 end
5724 end
5725 else
5726 track:Stop()
5727 Scared.BackgroundColor3 = col
5728 end
5729end)
5730
5731local Anim = Instance.new("Animation")
5732Anim.AnimationId = "rbxassetid://33796059"
5733local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5734local InsaneACTIVE = false
5735Insane.MouseButton1Click:connect(function()
5736 InsaneACTIVE = not InsaneACTIVE
5737 if InsaneACTIVE then
5738 track:Play(.1, 1, 1e8)
5739 Insane.BackgroundColor3 = loc
5740 else
5741 track:Stop()
5742 Insane.BackgroundColor3 = col
5743 end
5744end)
5745
5746local Anim = Instance.new("Animation")
5747Anim.AnimationId = "rbxassetid://33169583"
5748local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5749local ArmDetachACTIVE = false
5750ArmDetach.MouseButton1Click:connect(function()
5751 ArmDetachACTIVE = not ArmDetachACTIVE
5752 if ArmDetachACTIVE then
5753 ArmDetach.BackgroundColor3 = loc
5754 while wait() do
5755 if track.IsPlaying == false then
5756 if ArmDetachACTIVE then
5757 track:Play(.1, 1, 1e6)
5758 end
5759 end
5760 end
5761 else
5762 track:Stop()
5763 ArmDetach.BackgroundColor3 = col
5764 end
5765end)
5766
5767local Anim = Instance.new("Animation")
5768Anim.AnimationId = "rbxassetid://35978879"
5769local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5770local SwordSliceACTIVE = false
5771SwordSlice.MouseButton1Click:connect(function()
5772 SwordSliceACTIVE = not SwordSliceACTIVE
5773 if SwordSliceACTIVE then
5774 track:Play(.1, 1, 1)
5775 SwordSlice.BackgroundColor3 = loc
5776 else
5777 track:Stop()
5778 SwordSlice.BackgroundColor3 = col
5779 end
5780end)
5781
5782local Anim = Instance.new("Animation")
5783Anim.AnimationId = "rbxassetid://27432691"
5784local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5785local InsaneArmsACTIVE = false
5786InsaneArms.MouseButton1Click:connect(function()
5787 InsaneArmsACTIVE = not InsaneArmsACTIVE
5788 if InsaneArmsACTIVE then
5789 InsaneArms.BackgroundColor3 = loc
5790 while wait() do
5791 if track.IsPlaying == false then
5792 if InsaneArmsACTIVE then
5793 track:Play(.1, 1, 1e4)
5794 end
5795 end
5796 end
5797 else
5798 track:Stop()
5799 InsaneArms.BackgroundColor3 = col
5800 end
5801end)
5802-- R15
5803local Anim = Instance.new("Animation")
5804Anim.AnimationId = "rbxassetid://674871189"
5805local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5806local CrazySlashACTIVE = false
5807CrazySlash.MouseButton1Click:connect(function()
5808 CrazySlashACTIVE = not CrazySlashACTIVE
5809 if CrazySlashACTIVE then
5810 CrazySlash.BackgroundColor3 = rloc
5811 while wait() do
5812 if track.IsPlaying == false then
5813 if CrazySlashACTIVE then
5814 track:Play(.1, 1, 1)
5815 end
5816 end
5817 end
5818 else
5819 track:Stop()
5820 CrazySlash.BackgroundColor3 = rcol
5821 end
5822end)
5823
5824local Anim = Instance.new("Animation")
5825Anim.AnimationId = "rbxassetid://582855105"
5826local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5827local OpenACTIVE = false
5828Open.MouseButton1Click:connect(function()
5829 OpenACTIVE = not OpenACTIVE
5830 if OpenACTIVE then
5831 Open.BackgroundColor3 = rloc
5832 while wait() do
5833 if track.IsPlaying == false then
5834 if OpenACTIVE then
5835 track:Play(.1, 1, 1)
5836 end
5837 end
5838 end
5839 else
5840 track:Stop()
5841 Open.BackgroundColor3 = rcol
5842 end
5843end)
5844
5845local Anim = Instance.new("Animation")
5846Anim.AnimationId = "rbxassetid://754658275"
5847local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5848local R15SpinnerACTIVE = false
5849R15Spinner.MouseButton1Click:connect(function()
5850 R15SpinnerACTIVE = not R15SpinnerACTIVE
5851 if R15SpinnerACTIVE then
5852 R15Spinner.BackgroundColor3 = rloc
5853 while wait() do
5854 if track.IsPlaying == false then
5855 if R15SpinnerACTIVE then
5856 track:Play(.1, 1, 1)
5857 end
5858 end
5859 end
5860 else
5861 track:Stop()
5862 R15Spinner.BackgroundColor3 = rcol
5863 end
5864end)
5865
5866local Anim = Instance.new("Animation")
5867Anim.AnimationId = "rbxassetid://582384156"
5868local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5869local ArmsOutACTIVE = false
5870ArmsOut.MouseButton1Click:connect(function()
5871 ArmsOutACTIVE = not ArmsOutACTIVE
5872 if ArmsOutACTIVE then
5873 ArmsOut.BackgroundColor3 = rloc
5874 while wait() do
5875 if track.IsPlaying == false then
5876 if ArmsOutACTIVE then
5877 track:Play(.1, 1, 1)
5878 end
5879 end
5880 end
5881 else
5882 track:Stop()
5883 ArmsOut.BackgroundColor3 = rcol
5884 end
5885end)
5886
5887local Anim = Instance.new("Animation")
5888Anim.AnimationId = "rbxassetid://717879555"
5889local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5890local FloatSlashACTIVE = false
5891FloatSlash.MouseButton1Click:connect(function()
5892 FloatSlashACTIVE = not FloatSlashACTIVE
5893 if FloatSlashACTIVE then
5894 FloatSlash.BackgroundColor3 = rloc
5895 while wait() do
5896 if track.IsPlaying == false then
5897 if FloatSlashACTIVE then
5898 track:Play(.1, 1, 1)
5899 end
5900 end
5901 end
5902 else
5903 track:Stop()
5904 FloatSlash.BackgroundColor3 = rcol
5905 end
5906end)
5907
5908local Anim = Instance.new("Animation")
5909Anim.AnimationId = "rbxassetid://708553116"
5910local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5911WeirdZombieACTIVE = false
5912WeirdZombie.MouseButton1Click:connect(function()
5913 WeirdZombieACTIVE = not WeirdZombieACTIVE
5914 if WeirdZombieACTIVE then
5915 WeirdZombie.BackgroundColor3 = rloc
5916 while wait() do
5917 if track.IsPlaying == false then
5918 if WeirdZombieACTIVE then
5919 track:Play(.1, 1, 1)
5920 end
5921 end
5922 end
5923 else
5924 track:Stop()
5925 WeirdZombie.BackgroundColor3 = rcol
5926 end
5927end)
5928
5929local Anim = Instance.new("Animation")
5930Anim.AnimationId = "rbxassetid://746398327"
5931local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5932DownSlashACTIVE = false
5933DownSlash.MouseButton1Click:connect(function()
5934 DownSlashACTIVE = not DownSlashACTIVE
5935 if DownSlashACTIVE then
5936 DownSlash.BackgroundColor3 = rloc
5937 while wait() do
5938 if track.IsPlaying == false then
5939 if DownSlashACTIVE then
5940 track:Play(.1, 1, 1)
5941 end
5942 end
5943 end
5944 else
5945 track:Stop()
5946 DownSlash.BackgroundColor3 = rcol
5947 end
5948end)
5949
5950local Anim = Instance.new("Animation")
5951Anim.AnimationId = "rbxassetid://675025795"
5952local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5953PullACTIVE = false
5954Pull.MouseButton1Click:connect(function()
5955 PullACTIVE = not PullACTIVE
5956 if PullACTIVE then
5957 Pull.BackgroundColor3 = rloc
5958 while wait() do
5959 if track.IsPlaying == false then
5960 if PullACTIVE then
5961 track:Play(.1, 1, 1)
5962 end
5963 end
5964 end
5965 else
5966 track:Stop()
5967 Pull.BackgroundColor3 = rcol
5968 end
5969end)
5970
5971local Anim = Instance.new("Animation")
5972Anim.AnimationId = "rbxassetid://698251653"
5973local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5974CircleArmACTIVE = false
5975CircleArm.MouseButton1Click:connect(function()
5976 CircleArmACTIVE = not CircleArmACTIVE
5977 if CircleArmACTIVE then
5978 CircleArm.BackgroundColor3 = rloc
5979 while wait() do
5980 if track.IsPlaying == false then
5981 if CircleArmACTIVE then
5982 track:Play(.1, 1, 1)
5983 end
5984 end
5985 end
5986 else
5987 track:Stop()
5988 CircleArm.BackgroundColor3 = rcol
5989 end
5990end)
5991
5992local Anim = Instance.new("Animation")
5993Anim.AnimationId = "rbxassetid://696096087"
5994local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
5995BendACTIVE = false
5996Bend.MouseButton1Click:connect(function()
5997 BendACTIVE = not BendACTIVE
5998 if BendACTIVE then
5999 Bend.BackgroundColor3 = rloc
6000 while wait() do
6001 if track.IsPlaying == false then
6002 if BendACTIVE then
6003 track:Play(.1, 1, 1)
6004 end
6005 end
6006 end
6007 else
6008 track:Stop()
6009 Bend.BackgroundColor3 = rcol
6010 end
6011end)
6012
6013local Anim = Instance.new("Animation")
6014Anim.AnimationId = "rbxassetid://675025570"
6015local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
6016RotateSlashACTIVE = false
6017RotateSlash.MouseButton1Click:connect(function()
6018 RotateSlashACTIVE = not RotateSlashACTIVE
6019 if RotateSlashACTIVE then
6020 RotateSlash.BackgroundColor3 = rloc
6021 while wait() do
6022 if track.IsPlaying == false then
6023 if RotateSlashACTIVE then
6024 track:Play(.1, 1, 1)
6025 end
6026 end
6027 end
6028 else
6029 track:Stop()
6030 RotateSlash.BackgroundColor3 = rcol
6031 end
6032end)
6033
6034local Anim = Instance.new("Animation")
6035Anim.AnimationId = "rbxassetid://754656200"
6036local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
6037FlingArmsACTIVE = false
6038FlingArms.MouseButton1Click:connect(function()
6039 FlingArmsACTIVE = not FlingArmsACTIVE
6040 if FlingArmsACTIVE then
6041 FlingArms.BackgroundColor3 = rloc
6042 while wait() do
6043 if track.IsPlaying == false then
6044 if FlingArmsACTIVE then
6045 track:Play(.1, 1, 10)
6046 end
6047 end
6048 end
6049 else
6050 track:Stop()
6051 FlingArms.BackgroundColor3 = rcol
6052 end
6053end)
6054
6055-- Finished update!
6056end)
6057
6058OOFsong.Name = "OOF song"
6059OOFsong.Parent = Main
6060OOFsong.BackgroundColor3 = Color3.new(0, 0, 0.498039)
6061OOFsong.Position = UDim2.new(0.776786029, 0, 0.201140165, 0)
6062OOFsong.Size = UDim2.new(0, 93, 0, 187)
6063OOFsong.Font = Enum.Font.SourceSans
6064OOFsong.Text = "Creeper, Aw Man"
6065OOFsong.TextColor3 = Color3.new(0, 0, 0)
6066OOFsong.TextSize = 22
6067OOFsong.TextWrapped = true
6068OOFsong.MouseButton1Down:connect(function()
6069 local tbl_main =
6070{
6071 "Invisibility"
6072}
6073game:GetService("Workspace").Events.ChangeVabil:FireServer(unpack(tbl_main))
6074wait(0.001)
6075 game.Workspace.Events.Vampire.Invisibility:FireServer(true, "http://www.roblox.com/asset?id=3295654382", "http://www.roblox.com/asset?id=3295654382")
6076end)
6077
6078AlbertScreaming.Name = "Albert Screaming"
6079AlbertScreaming.Parent = Main
6080AlbertScreaming.BackgroundColor3 = Color3.new(0, 0, 0.498039)
6081AlbertScreaming.Position = UDim2.new(0.0642111152, 0, 0.295709997, 0)
6082AlbertScreaming.Size = UDim2.new(0, 347, 0, 66)
6083AlbertScreaming.Font = Enum.Font.SourceSans
6084AlbertScreaming.Text = "Albert Screaming!"
6085AlbertScreaming.TextColor3 = Color3.new(0, 0, 0)
6086AlbertScreaming.TextSize = 24
6087AlbertScreaming.TextWrapped = true
6088AlbertScreaming.MouseButton1Down:connect(function()
6089 local tbl_main =
6090{
6091 "Invisibility"
6092}
6093game:GetService("Workspace").Events.ChangeVabil:FireServer(unpack(tbl_main))
6094wait(0.001)
6095 game.Workspace.Events.Vampire.Invisibility:FireServer(true, "http://www.roblox.com/asset?id=2562510225", "http://www.roblox.com/asset?id=2562510225")
6096end)
6097
6098Close.Name = "Close"
6099Close.Parent = Main
6100Close.BackgroundColor3 = Color3.new(0.333333, 0, 0)
6101Close.Position = UDim2.new(0.847601414, 0, 0.0104388297, 0)
6102Close.Size = UDim2.new(0, 57, 0, 39)
6103Close.Font = Enum.Font.SourceSans
6104Close.Text = "X"
6105Close.TextColor3 = Color3.new(0, 0, 0)
6106Close.TextScaled = true
6107Close.TextSize = 14
6108Close.TextWrapped = true
6109Close.MouseButton1Down:connect(function()
6110 Main.Visible = false
6111 Open.Visible = true
6112end)
6113
6114Open.Name = "Open"
6115Open.Parent = VampireHunters2Gui
6116Open.BackgroundColor3 = Color3.new(1, 1, 1)
6117Open.Position = UDim2.new(0.0205223877, 0, 0.577224374, 0)
6118Open.Size = UDim2.new(0, 80, 0, 28)
6119Open.Visible = true
6120Open.Font = Enum.Font.SourceSans
6121Open.Text = "Open"
6122Open.TextColor3 = Color3.new(0, 0, 0)
6123Open.TextSize = 14
6124Open.MouseButton1Down:connect(function()
6125 Main.Visible = true
6126 Open.Visible = false
6127end)
6128
6129FToTP.Name = "FToTP"
6130FToTP.Parent = Main
6131FToTP.BackgroundColor3 = Color3.new(0, 0, 0.498039)
6132FToTP.Position = UDim2.new(0.433133721, 0, 0.250580788, 0)
6133FToTP.Size = UDim2.new(0, 163, 0, 50)
6134FToTP.Font = Enum.Font.SourceSans
6135FToTP.Text = "F To TP"
6136FToTP.TextColor3 = Color3.new(0, 0, 0)
6137FToTP.TextSize = 24
6138FToTP.MouseButton1Down:connect(function()
6139 plr = game.Players.LocalPlayer
6140
6141hum = plr.Character.HumanoidRootPart
6142
6143mouse = plr:GetMouse()
6144
6145
6146
6147mouse.KeyDown:connect(function(key)
6148
6149if key == "f" then
6150
6151if mouse.Target then
6152
6153hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
6154
6155end
6156
6157end
6158end)
6159end)
6160
6161-- Creator: illremember#3799
6162
6163-- Credits to infinite yield, harkinian, dex creators
6164
6165prefix = ";"
6166wait(0.3)
6167Commands = {
6168 '[-] cmdbar is shown when ; is pressed.',
6169 '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
6170 '[2] bring [plr] -- You need a tool! Will bring player to you',
6171 '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
6172 '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
6173 '[5] attach [plr] -- You need a tool! Attaches you to player',
6174 '[6] unattach [plr] -- Attempts to unattach you from a player',
6175 '[7] follow [plr] -- Makes you follow behind the player',
6176 '[8] unfollow',
6177 '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
6178 '[10] trail [plr] -- The opposite of follow, you stay infront of player',
6179 '[11] untrail',
6180 '[12] orbit [plr] -- Makes you orbit the player',
6181 '[13] unorbit',
6182 '[14] fling [plr] -- Makes you fling the player',
6183 '[15] unfling',
6184 '[16] fecheck -- Checks if the game is FE or not',
6185 '[17] void [plr] -- Teleports player to the void',
6186 '[18] noclip -- Gives you noclip to walk through walls',
6187 '[19] clip -- Removes noclip',
6188 '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
6189 '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
6190 '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
6191 '[23] default -- Changes your speed, jumppower and hipheight to default values',
6192 '[24] annoy [plr] -- Loop teleports you to the player',
6193 '[25] unannoy',
6194 '[26] headwalk [plr] -- Loop teleports you to the player head',
6195 '[27] unheadwalk',
6196 '[28] nolimbs -- Removes your arms and legs',
6197 '[29] god -- Gives you FE Godmode',
6198 '[30] drophats -- Drops your accessories',
6199 '[31] droptool -- Drops any tool you have equipped',
6200 '[32] loopdhats -- Loop drops your accessories',
6201 '[33] unloopdhats',
6202 '[34] loopdtool -- Loop drops any tools you have equipped',
6203 '[35] unloopdtool',
6204 '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
6205 '[37] view [plr] -- Changes your camera to the player character',
6206 '[38] unview',
6207 '[39] goto [plr] -- Teleports you to player',
6208 '[40] fly -- Allows you to fly, credit to Infinite Yield',
6209 '[41] unfly',
6210 '[42] chat [msg] -- Makes you chat a message',
6211 '[43] spam [msg] -- Spams a message',
6212 '[44] unspam',
6213 '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
6214 '[46] pmspam [plr] -- Spams a player in private message',
6215 '[47] unpmspam',
6216 '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
6217 '[49] uncfreeze [plr]',
6218 '[50] unlockws -- Unlocks the workspace',
6219 '[51] lockws -- Locks the workspace',
6220 '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
6221 '[53] pstand -- Enables platform stand',
6222 '[54] unpstand -- Disables platform stand',
6223 '[55] blockhead -- Removes your head mesh',
6224 '[56] sit',
6225 '[57] bringobj [obj] -- Only shows on client, brings an object/part to you constantly, can be used to bring healing parts, weapons, money etc, type in exact name',
6226 '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
6227 '[59] hypertotal -- Loads in my FE GUI Hypertotal',
6228 '[60] cmds -- Prints all commands',
6229 '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
6230 '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
6231 '[63] spinner -- Makes you spin',
6232 '[64] nospinner',
6233 '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
6234 '[66] noreach -- Removes reach, must have tool equipped',
6235 '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
6236 '[68] tp me [plr] -- Alternative to goto',
6237 '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
6238 '[70] uncbring',
6239 '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
6240 '[72] givetool [plr] -- Gives the tool you have equipped to the player',
6241 '[73] glitch [plr] -- Glitches you and the player, looks very cool',
6242 '[74] unglitch -- Unglitches you',
6243 '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
6244 '[76] explorer -- Loads up DEX',
6245 '[77] reset -- Resets your character.',
6246 '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
6247 '[79] animgui -- Loads up Energize animations GUI',
6248 '[80] savepos -- Saves your current position',
6249 '[81] loadpos -- Teleports you to your saved position',
6250 '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
6251 '[83] unbang',
6252 '[84] delcmdbar -- Removes the command bar completely',
6253 '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
6254 '[86] shutdown -- Uses harkinians script to shutdown server',
6255 '[87] respawn -- If grespawn doesnt work you can use respawn',
6256 '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
6257 '[89] getplrs -- Prints all players in game',
6258 '[90] deldecal -- Deletes all decals client sided',
6259 '[91] opfinality -- Loads in my FE GUI Opfinality',
6260 '[92] remotes -- Prints all remotes in the game in the console when added',
6261 '[93] noremotes -- Stops printing remotes',
6262 '[94] tpdefault -- Stops all loop teleports to a player',
6263 '[95] stopsit -- Will not allow you to sit',
6264 '[96] gosit -- Allows you to sit',
6265 '[97] clicktp -- Enables click tp',
6266 '[98] noclicktp -- Disables click tp',
6267 '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
6268 '[100] toolsoff -- Stops ;toolson',
6269 '[101] version -- Gets the admin version',
6270 '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
6271 '[103] gravity [num] -- Changes workspace gravity default is 196.2',
6272 '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
6273 '[105] clickdel -- Delete any block you press q on, client sided',
6274 '[106] noclickdel -- Stops clickdel',
6275 '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
6276 '[108] unlooprhats -- Stops loop removing mesh',
6277 '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
6278 '[110] unlooprtool -- Stops loop removing mesh',
6279 '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
6280 '[112] age [plr] -- Makes you chat the account age of the player',
6281 '[113] id [plr] -- Makes you chat the account ID of the player',
6282 '[114] .age [plr] -- Privately shows you the account age of the player',
6283 '[115] .id [plr] -- Privately shows you the account ID of the player',
6284 '[116] gameid -- Shows the game ID',
6285 '[117] removeinvis -- Removes all invisible walls/parts, client sided',
6286 '[118] removefog -- Removes fog, client sided',
6287 '[119] disable -- Disables your character by removing humanoid',
6288 '[120] enable -- Enables your character by adding humanoid',
6289 '[121] prefix [key] -- Changes the prefix used, default is ;',
6290 '[122] ;resetprefix -- Resets the prefix to ; incase you change it to an unusable prefix. Say exactly ";resetprefix" to do this command, no matter what your prefix is set to.',
6291 '[123] flyspeed [num] -- Change your fly speed, default is 1',
6292 '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
6293 '[125] uncarpet -- Stops carpet player',
6294 '[126] stare [plr] -- Turns your character to stare at another player',
6295 '[127] unstare -- Stops stare player',
6296 '[128] logchat -- Logs all chat (including /e and whispers) of all players',
6297 '[129] unlogchat -- Disables logchat',
6298 '[130] fixcam -- Fixes/resets your camera',
6299 '[131] unstate -- Stops changing state',
6300}
6301speedget = 1
6302
6303lplayer = game:GetService("Players").LocalPlayer
6304
6305lplayer.CharacterAdded:Connect(function(character)
6306 spin = false
6307 flying = false
6308 staring = false
6309 banpl = false
6310end)
6311
6312function change()
6313 prefix = prefix
6314 speedfly = speedfly
6315end
6316
6317function GetPlayer(String) -- Credit to Timeless/xFunnieuss
6318 local Found = {}
6319 local strl = String:lower()
6320 if strl == "all" then
6321 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
6322 table.insert(Found,v)
6323 end
6324 elseif strl == "others" then
6325 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
6326 if v.Name ~= lplayer.Name then
6327 table.insert(Found,v)
6328 end
6329 end
6330 elseif strl == "me" then
6331 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
6332 if v.Name == lplayer.Name then
6333 table.insert(Found,v)
6334 end
6335 end
6336 else
6337 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
6338 if v.Name:lower():sub(1, #String) == String:lower() then
6339 table.insert(Found,v)
6340 end
6341 end
6342 end
6343 return Found
6344end
6345
6346local Mouse = lplayer:GetMouse()
6347
6348spin = false
6349followed = false
6350traill = false
6351noclip = false
6352annoying = false
6353hwalk = false
6354droppinghats = false
6355droppingtools = false
6356flying = false
6357spamdelay = 1
6358spamming = false
6359spammingpm = false
6360cbringing = false
6361remotes = true
6362added = true
6363binds = false
6364stopsitting = false
6365clickgoto = false
6366gettingtools = false
6367removingmeshhats = false
6368removingmeshtool = false
6369clickdel = false
6370staring = false
6371chatlogs = false
6372banpl = false
6373changingstate = false
6374statechosen = 0
6375
6376adminversion = "Reviz Admin by illremember, Version 2.0"
6377
6378flying = false
6379speedfly = 1
6380
6381function plrchat(plr, chat)
6382print(plr.Name..": "..tick().."\n"..chat)
6383end
6384
6385for i,v in pairs(game:GetService("Players"):GetPlayers()) do
6386v.Chatted:connect(function(chat)
6387if chatlogs then
6388plrchat(v, chat)
6389end
6390end)
6391end
6392game:GetService("Players").PlayerAdded:connect(function(plr)
6393plr.Chatted:connect(function(chat)
6394if chatlogs then
6395plrchat(plr, chat)
6396end
6397end)
6398end)
6399
6400
6401local ScreenGui = Instance.new("ScreenGui")
6402local Frame = Instance.new("Frame")
6403local CMDBAR = Instance.new("TextBox")
6404ScreenGui.Parent = game:GetService("CoreGui")
6405Frame.Parent = ScreenGui
6406Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
6407Frame.BackgroundTransparency = 0.3
6408Frame.Position = UDim2.new(0.5, 0, 0, 10)
6409Frame.Size = UDim2.new(0, 200, 0, 40)
6410Frame.Active = true
6411Frame.Draggable = true
6412CMDBAR.Name = "CMDBAR"
6413CMDBAR.Parent = Frame
6414CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
6415CMDBAR.BackgroundTransparency = 0.20000000298023
6416CMDBAR.Size = UDim2.new(0, 180, 0, 20)
6417CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
6418CMDBAR.Font = Enum.Font.SourceSansLight
6419CMDBAR.FontSize = Enum.FontSize.Size14
6420CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
6421CMDBAR.TextScaled = true
6422CMDBAR.TextSize = 14
6423CMDBAR.TextWrapped = true
6424CMDBAR.Text = "Press ; to type, Enter to execute"
6425
6426local CMDS = Instance.new("ScreenGui")
6427local CMDSFRAME = Instance.new("Frame")
6428local ScrollingFrame = Instance.new("ScrollingFrame")
6429local TextLabel = Instance.new("TextLabel")
6430local closegui = Instance.new("TextButton")
6431CMDS.Name = "CMDS"
6432CMDS.Parent = game:GetService("CoreGui")
6433CMDSFRAME.Name = "CMDSFRAME"
6434CMDSFRAME.Parent = CMDS
6435CMDSFRAME.Active = true
6436CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
6437CMDSFRAME.BorderSizePixel = 0
6438CMDSFRAME.Draggable = true
6439CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
6440CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
6441CMDSFRAME.Visible = false
6442ScrollingFrame.Parent = CMDSFRAME
6443ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
6444ScrollingFrame.BorderSizePixel = 0
6445ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
6446ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
6447ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
6448TextLabel.Parent = ScrollingFrame
6449TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6450TextLabel.BackgroundTransparency = 1
6451TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
6452TextLabel.Font = Enum.Font.SourceSans
6453TextLabel.FontSize = Enum.FontSize.Size18
6454TextLabel.Text = "[-] cmdbar is shown when ; is pressed.,\n[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player,\n[2] bring [plr] -- You need a tool! Will bring player to you,\n[3] spin [plr] -- You need a tool! Makes you and the player spin crazy,\n[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting,\n[5] attach [plr] -- You need a tool! Attaches you to player,\n[6] unattach [plr] -- Attempts to unattach you from a player,\n[7] follow [plr] -- Makes you follow behind the player,\n[8] unfollow,\n[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air,\n[10] trail [plr] -- The opposite of follow, you stay infront of player,\n[11] untrail,\n[12] orbit [plr] -- Makes you orbit the player,\n[13] unorbit,\n[14] fling [plr] -- Makes you fling the player,\n[15] unfling,\n[16] fecheck -- Checks if the game is FE or not,\n[17] void [plr] -- Teleports player to the void,\n[18] noclip -- Gives you noclip to walk through walls,\n[19] clip -- Removes noclip,\n[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default,\n[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default,\n[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default,\n[23] default -- Changes your speed, jumppower and hipheight to default values,\n[24] annoy [plr] -- Loop teleports you to the player,\n[25] unannoy,\n[26] headwalk [plr] -- Loop teleports you to the player head,\n[27] unheadwalk,\n[28] nolimbs -- Removes your arms and legs,\n[29] god -- Gives you FE Godmode,\n[30] drophats -- Drops your accessories,\n[31] droptool -- Drops any tool you have equipped,\n[32] loopdhats -- Loop drops your accessories,\n[33] unloopdhats,\n[34] loopdtool -- Loop drops any tools you have equipped,\n[35] unloopdtool,\n[36] invisible -- Gives you invisibility CREDIT TO TIMELESS,\n[37] view [plr] -- Changes your camera to the player character,\n[38] unview,\n[39] goto [plr] -- Teleports you to player,\n[40] fly -- Allows you to fly,\n[41] unfly,\n[42] chat [msg] -- Makes you chat a message,\n[43] spam [msg] -- Spams a message,\n[44] unspam,\n[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second,\n[46] pmspam [plr] -- Spams a player in private message,\n[47] unpmspam,\n[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you,\n[49] uncfreeze [plr],\n[50] unlockws -- Unlocks the workspace,\n[51] lockws -- Locks the workspace,\n[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you,\n[53] pstand -- Enables platform stand,\n[54] unpstand -- Disables platform stand,\n[55] blockhead -- Removes your head mesh,\n[56] sit,\n[57] bringobj [obj] -- Only shows on client, brings an object/part to you constantly, can be used to bring healing parts, weapons, money etc, type in exact name,\n[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided,\n[59] hypertotal -- Loads in my FE GUI Hypertotal,\n[60] cmds -- Prints all commands,\n[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats,\n[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool,\n[63] spinner -- Makes you spin,\n[64] nospinner,\n[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom,\n[66] noreach -- Removes reach, must have tool equipped,\n[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying,\n[68] tp me [plr] -- Alternative to goto,\n[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player,\n[70] uncbring,\n[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players,\n[72] givetool [plr] -- Gives the tool you have equipped to the player,\n[73] glitch [plr] -- Glitches you and the player, looks very cool,\n[74] unglitch -- Unglitches you,\n[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode,\n[76] explorer -- Loads up DEX,\n[77] reset -- Resets your character.,\n[78] anim [id] -- Applies an animation on you, must be created by ROBLOX,\n[79] animgui -- Loads up Energize animations GUI,\n[80] savepos -- Saves your current position,\n[81] loadpos -- Teleports you to your saved position,\n[82] bang [plr] -- 18+,\n[83] unbang,\n[84] delcmdbar -- Removes the command bar completely,\n[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model,\n[86] shutdown -- Uses harkinians script to shutdown server,\n[87] respawn -- If grespawn doesnt work you can use respawn,\n[88] delobj [obj] -- Deletes a certain brick in workspace, client sided,\n[89] getplrs -- Prints all players in game,\n[90] deldecal -- Deletes all decals client sided,\n[91] opfinality -- Loads in my FE GUI Opfinality,\n[92] remotes -- Prints all remotes in the game in the console when added,\n[93] noremotes -- Stops printing remotes,\n[94] tpdefault -- Stops all loop teleports to a player,\n[95] stopsit -- Will not allow you to sit,\n[96] gosit -- Allows you to sit,\n[97] clicktp -- Enables click tp,\n[98] noclicktp -- Disables click tp,\n[99] toolson -- If any tools are dropped in the workspace you will automatically get them,\n[100] toolsoff -- Stops ;toolson,\n[101] version -- Gets the admin version, \n This list of commands is NOT showing everything, go to my thread in the pastebin link to see ALL commands."
6455TextLabel.TextColor3 = Color3.new(1, 1, 1)
6456TextLabel.TextSize = 15
6457TextLabel.TextWrapped = true
6458TextLabel.TextXAlignment = Enum.TextXAlignment.Left
6459TextLabel.TextYAlignment = Enum.TextYAlignment.Top
6460closegui.Name = "closegui"
6461closegui.Parent = CMDSFRAME
6462closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
6463closegui.BorderSizePixel = 0
6464closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
6465closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
6466closegui.Font = Enum.Font.SourceSansBold
6467closegui.FontSize = Enum.FontSize.Size24
6468closegui.Text = "X"
6469closegui.TextColor3 = Color3.new(1, 1, 1)
6470closegui.TextSize = 20
6471
6472closegui.MouseButton1Click:connect(function()
6473 CMDSFRAME.Visible = false
6474end)
6475
6476game:GetService('RunService').Stepped:connect(function()
6477 if spin then
6478 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
6479 end
6480 if followed then
6481 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
6482 end
6483 if traill then
6484 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
6485 end
6486 if annoying then
6487 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
6488 end
6489 if hwalk then
6490 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
6491 end
6492 if staring then
6493 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
6494 end
6495end)
6496game:GetService('RunService').Stepped:connect(function()
6497 if noclip then
6498 if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
6499 lplayer.Character.Head.CanCollide = false
6500 lplayer.Character.Torso.CanCollide = false
6501 lplayer.Character["Left Leg"].CanCollide = false
6502 lplayer.Character["Right Leg"].CanCollide = false
6503 else
6504 lplayer.Character.Humanoid:ChangeState(11)
6505 end
6506 end
6507 if changingstate then
6508 lplayer.Character.Humanoid:ChangeState(statechosen)
6509 end
6510end)
6511game:GetService('RunService').Stepped:connect(function()
6512 if droppinghats then
6513 for i,v in pairs(lplayer.Character:GetChildren()) do
6514 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
6515 v.Parent = workspace
6516 end
6517 end
6518 end
6519 if droppingtools then
6520 for i,v in pairs(lplayer.Character:GetChildren()) do
6521 if (v:IsA("Tool")) then
6522 v.Parent = workspace
6523 end
6524 end
6525 end
6526 if removingmeshhats then
6527 for i,v in pairs(lplayer.Character:GetChildren()) do
6528 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
6529 v.Handle.Mesh:Destroy()
6530 end
6531 end
6532 end
6533 if removingmeshtool then
6534 for i,v in pairs(lplayer.Character:GetChildren()) do
6535 if (v:IsA("Tool")) then
6536 v.Handle.Mesh:Destroy()
6537 end
6538 end
6539 end
6540end)
6541game:GetService('RunService').Stepped:connect(function()
6542 if banpl then
6543 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
6544 end
6545end)
6546game:GetService('RunService').Stepped:connect(function()
6547 if stopsitting then
6548 lplayer.Character.Humanoid.Sit = false
6549 end
6550end)
6551
6552plr = lplayer
6553hum = plr.Character.HumanoidRootPart
6554mouse = plr:GetMouse()
6555mouse.KeyDown:connect(function(key)
6556 if key == "e" then
6557 if mouse.Target then
6558 if clickgoto then
6559 hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
6560 elseif clickdel then
6561 mouse.Target:Destroy()
6562 end
6563 end
6564 end
6565end)
6566
6567game:GetService("Workspace").ChildAdded:connect(function(part)
6568 if gettingtools then
6569 if part:IsA("Tool") then
6570 part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
6571 end
6572 end
6573end)
6574
6575lplayer.Chatted:Connect(function(msg)
6576 if string.sub(msg, 1, 6) == (prefix.."kill ") then
6577 if string.sub(msg, 7) == "me" then
6578 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
6579 else
6580 for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
6581 local NOW = lplayer.Character.HumanoidRootPart.CFrame
6582 lplayer.Character.Humanoid.Name = 1
6583 local l = lplayer.Character["1"]:Clone()
6584 l.Parent = lplayer.Character
6585 l.Name = "Humanoid"
6586 wait(0.1)
6587 lplayer.Character["1"]:Destroy()
6588 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6589 lplayer.Character.Animate.Disabled = true
6590 wait(0.1)
6591 lplayer.Character.Animate.Disabled = false
6592 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6593 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
6594 lplayer.Character.Humanoid:EquipTool(v)
6595 end
6596 local function tp(player,player2)
6597 local char1,char2=player.Character,player2.Character
6598 if char1 and char2 then
6599 char1:MoveTo(char2.Head.Position)
6600 end
6601 end
6602 wait(0.1)
6603 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
6604 wait(0.2)
6605 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
6606 wait(0.5)
6607 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
6608 wait(0.7)
6609 tp(lplayer,game:GetService("Players")[v.Name])
6610 wait(0.7)
6611 lplayer.Character.HumanoidRootPart.CFrame = NOW
6612 game:GetService("StarterGui"):SetCore("SendNotification", {
6613 Title = "Tools needed!";
6614 Text = "You need a tool in your backpack for this command!";
6615 })
6616 end
6617 end
6618 end
6619 if string.sub(msg, 1, 7) == (prefix.."bring ") then
6620 for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
6621 local NOW = lplayer.Character.HumanoidRootPart.CFrame
6622 lplayer.Character.Humanoid.Name = 1
6623 local l = lplayer.Character["1"]:Clone()
6624 l.Parent = lplayer.Character
6625 l.Name = "Humanoid"
6626 wait(0.1)
6627 lplayer.Character["1"]:Destroy()
6628 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6629 lplayer.Character.Animate.Disabled = true
6630 wait(0.1)
6631 lplayer.Character.Animate.Disabled = false
6632 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6633 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
6634 lplayer.Character.Humanoid:EquipTool(v)
6635 end
6636 local function tp(player,player2)
6637 local char1,char2=player.Character,player2.Character
6638 if char1 and char2 then
6639 char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
6640 end
6641 end
6642 local function getout(player,player2)
6643 local char1,char2=player.Character,player2.Character
6644 if char1 and char2 then
6645 char1:MoveTo(char2.Head.Position)
6646 end
6647 end
6648 tp(game:GetService("Players")[v.Name], lplayer)
6649 wait(0.2)
6650 tp(game:GetService("Players")[v.Name], lplayer)
6651 wait(0.5)
6652 lplayer.Character.HumanoidRootPart.CFrame = NOW
6653 wait(0.5)
6654 getout(lplayer, game:GetService("Players")[v.Name])
6655 wait(0.3)
6656 lplayer.Character.HumanoidRootPart.CFrame = NOW
6657 game:GetService("StarterGui"):SetCore("SendNotification", {
6658 Title = "Tools needed!";
6659 Text = "You need a tool in your backpack for this command!";
6660 })
6661 end
6662 end
6663 if string.sub(msg, 1, 6) == (prefix.."spin ") then
6664 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
6665 lplayer.Character.Humanoid.Name = 1
6666 local l = lplayer.Character["1"]:Clone()
6667 l.Parent = lplayer.Character
6668 l.Name = "Humanoid"
6669 wait(0.1)
6670 lplayer.Character["1"]:Destroy()
6671 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6672 lplayer.Character.Animate.Disabled = true
6673 wait(0.1)
6674 lplayer.Character.Animate.Disabled = false
6675 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6676 lplayer.Character.Animate.Disabled = false
6677 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
6678 lplayer.Character.Humanoid:EquipTool(v)
6679 end
6680 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
6681 spinplr = v
6682 wait(0.5)
6683 spin = true
6684 game:GetService("StarterGui"):SetCore("SendNotification", {
6685 Title = "Tools needed!";
6686 Text = "You need a tool in your backpack for this command!";
6687 })
6688 end
6689 end
6690 if string.sub(msg, 1, 7) == (prefix.."unspin") then
6691 spin = false
6692 end
6693 if string.sub(msg, 1, 8) == (prefix.."attach ") then
6694 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
6695 lplayer.Character.Humanoid.Name = 1
6696 local l = lplayer.Character["1"]:Clone()
6697 l.Parent = lplayer.Character
6698 l.Name = "Humanoid"
6699 wait(0.1)
6700 lplayer.Character["1"]:Destroy()
6701 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6702 lplayer.Character.Animate.Disabled = true
6703 wait(0.1)
6704 lplayer.Character.Animate.Disabled = false
6705 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6706 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
6707 lplayer.Character.Humanoid:EquipTool(v)
6708 end
6709 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
6710 wait(0.3)
6711 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
6712 attplr = v
6713 game:GetService("StarterGui"):SetCore("SendNotification", {
6714 Title = "Tools needed!";
6715 Text = "You need a tool in your backpack for this command!";
6716 })
6717 end
6718 end
6719 if string.sub(msg, 1, 10) == (prefix.."unattach ") then
6720 for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
6721 local function getout(player,player2)
6722 local char1,char2=player.Character,player2.Character
6723 if char1 and char2 then
6724 char1:MoveTo(char2.Head.Position)
6725 end
6726 end
6727 getout(lplayer, game:GetService("Players")[v.Name])
6728 end
6729 end
6730 if string.sub(msg, 1, 8) == (prefix.."follow ") then
6731 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
6732 followed = true
6733 flwplr = v
6734 end
6735 end
6736 if string.sub(msg, 1, 9) == (prefix.."unfollow") then
6737 followed = false
6738 end
6739 if string.sub(msg, 1, 10) == (prefix.."freefall ") then
6740 for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
6741 local NOW = lplayer.Character.HumanoidRootPart.CFrame
6742 lplayer.Character.Humanoid.Name = 1
6743 local l = lplayer.Character["1"]:Clone()
6744 l.Parent = lplayer.Character
6745 l.Name = "Humanoid"
6746 wait(0.1)
6747 lplayer.Character["1"]:Destroy()
6748 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6749 lplayer.Character.Animate.Disabled = true
6750 wait(0.1)
6751 lplayer.Character.Animate.Disabled = false
6752 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6753 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
6754 lplayer.Character.Humanoid:EquipTool(v)
6755 end
6756 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
6757 wait(0.2)
6758 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
6759 wait(0.6)
6760 lplayer.Character.HumanoidRootPart.CFrame = NOW
6761 wait(0.6)
6762 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
6763 game:GetService("StarterGui"):SetCore("SendNotification", {
6764 Title = "Tools needed!";
6765 Text = "You need a tool in your backpack for this command!";
6766 })
6767 end
6768 end
6769 if string.sub(msg, 1, 7) == (prefix.."trail ") then
6770 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
6771 traill = true
6772 trlplr = v
6773 end
6774 end
6775 if string.sub(msg, 1, 8) == (prefix.."untrail") then
6776 traill = false
6777 end
6778 if string.sub(msg, 1, 7) == (prefix.."orbit ") then
6779 if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
6780 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
6781 else
6782 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
6783 local o = Instance.new("RocketPropulsion")
6784 o.Parent = lplayer.Character.HumanoidRootPart
6785 o.Name = "Orbit"
6786 o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
6787 o:Fire()
6788 noclip = true
6789 end
6790 end
6791 end
6792 if string.sub(msg, 1, 8) == (prefix.."unorbit") then
6793 lplayer.Character.HumanoidRootPart.Orbit:Destroy()
6794 noclip = false
6795 end
6796 if string.sub(msg, 1, 7) == (prefix.."fling ") then
6797 if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
6798 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
6799 else
6800 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
6801 local y = Instance.new("RocketPropulsion")
6802 y.Parent = lplayer.Character.HumanoidRootPart
6803 y.CartoonFactor = 1
6804 y.MaxThrust = 800000
6805 y.MaxSpeed = 1000
6806 y.ThrustP = 200000
6807 y.Name = "Fling"
6808 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
6809 y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
6810 y:Fire()
6811 noclip = true
6812 end
6813 end
6814 end
6815 if string.sub(msg, 1, 8) == (prefix.."unfling") then
6816 noclip = false
6817 lplayer.Character.HumanoidRootPart.Fling:Destroy()
6818 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
6819 wait(0.4)
6820 lplayer.Character.HumanoidRootPart.Fling:Destroy()
6821 end
6822 if string.sub(msg, 1, 8) == (prefix.."fecheck") then
6823 if game:GetService("Workspace").FilteringEnabled == true then
6824 warn("FE is Enabled (Filtering Enabled)")
6825 game:GetService("StarterGui"):SetCore("SendNotification", {
6826 Title = "FE is Enabled";
6827 Text = "Filtering Enabled. Enjoy using Reviz Admin!";
6828 })
6829 else
6830 warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
6831 game:GetService("StarterGui"):SetCore("SendNotification", {
6832 Title = "FE is Disabled";
6833 Text = "Filtering Disabled. Consider using a different admin script.";
6834 })
6835 end
6836 end
6837 if string.sub(msg, 1, 6) == (prefix.."void ") then
6838 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
6839 lplayer.Character.Humanoid.Name = 1
6840 local l = lplayer.Character["1"]:Clone()
6841 l.Parent = lplayer.Character
6842 l.Name = "Humanoid"
6843 wait(0.1)
6844 lplayer.Character["1"]:Destroy()
6845 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6846 lplayer.Character.Animate.Disabled = true
6847 wait(0.1)
6848 lplayer.Character.Animate.Disabled = false
6849 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6850 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
6851 lplayer.Character.Humanoid:EquipTool(v)
6852 end
6853 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
6854 wait(0.2)
6855 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
6856 wait(0.6)
6857 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
6858 game:GetService("StarterGui"):SetCore("SendNotification", {
6859 Title = "Tools needed!";
6860 Text = "You need a tool in your backpack for this command!";
6861 })
6862 end
6863 end
6864 if string.sub(msg, 1, 7) == (prefix.."noclip") then
6865 noclip = true
6866 game:GetService("StarterGui"):SetCore("SendNotification", {
6867 Title = "Noclip enabled";
6868 Text = "Type ;clip to disable";
6869 })
6870 end
6871 if string.sub(msg, 1, 5) == (prefix.."clip") then
6872 noclip = false
6873 game:GetService("StarterGui"):SetCore("SendNotification", {
6874 Title = "Noclip disabled";
6875 Text = "Type ;noclip to enable";
6876 })
6877 end
6878 if string.sub(msg, 1, 7) == (prefix.."speed ") then
6879 lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
6880 end
6881 if string.sub(msg, 1, 4) == (prefix.."ws ") then
6882 lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
6883 end
6884 if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
6885 lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
6886 end
6887 if string.sub(msg, 1, 4) == (prefix.."hh ") then
6888 lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
6889 end
6890 if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
6891 lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
6892 end
6893 if string.sub(msg, 1, 4) == (prefix.."jp ") then
6894 lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
6895 end
6896 if string.sub(msg, 1, 8) == (prefix.."default") then
6897 lplayer.Character.Humanoid.JumpPower = 50
6898 lplayer.Character.Humanoid.WalkSpeed = 16
6899 lplayer.Character.Humanoid.HipHeight = 0
6900 end
6901 if string.sub(msg, 1, 7) == (prefix.."annoy ") then
6902 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
6903 annoying = true
6904 annplr = v
6905 end
6906 end
6907 if string.sub(msg, 1, 8) == (prefix.."unannoy") then
6908 annoying = false
6909 end
6910 if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
6911 for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
6912 hwalk = true
6913 hdwplr = v
6914 end
6915 end
6916 if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
6917 hwalk = false
6918 end
6919 if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
6920 lplayer.Character["Left Leg"]:Destroy()
6921 lplayer.Character["Left Arm"]:Destroy()
6922 lplayer.Character["Right Leg"]:Destroy()
6923 lplayer.Character["Right Arm"]:Destroy()
6924 end
6925 if string.sub(msg, 1, 4) == (prefix.."god") then
6926 lplayer.Character.Humanoid.Name = 1
6927 local l = lplayer.Character["1"]:Clone()
6928 l.Parent = lplayer.Character
6929 l.Name = "Humanoid"
6930 wait(0.1)
6931 lplayer.Character["1"]:Destroy()
6932 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
6933 lplayer.Character.Animate.Disabled = true
6934 wait(0.1)
6935 lplayer.Character.Animate.Disabled = false
6936 lplayer.Character.Humanoid.DisplayDistanceType = "None"
6937 game:GetService("StarterGui"):SetCore("SendNotification", {
6938 Title = "FE Godmode enabled";
6939 Text = "Use ;grespawn or ;respawn to remove";
6940 })
6941 end
6942 if string.sub(msg, 1, 9) == (prefix.."drophats") then
6943 for i,v in pairs(lplayer.Character:GetChildren()) do
6944 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
6945 v.Parent = workspace
6946 end
6947 end
6948 end
6949 if string.sub(msg, 1, 9) == (prefix.."droptool") then
6950 for i,v in pairs(lplayer.Character:GetChildren()) do
6951 if (v:IsA("Tool")) then
6952 v.Parent = workspace
6953 end
6954 end
6955 end
6956 if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
6957 droppinghats = true
6958 game:GetService("StarterGui"):SetCore("SendNotification", {
6959 Title = "Loop Drop Enabled";
6960 Text = "Type ;unloopdhats to disable";
6961 })
6962 end
6963 if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
6964 droppinghats = false
6965 game:GetService("StarterGui"):SetCore("SendNotification", {
6966 Title = "Loop Drop Disabled";
6967 Text = "Type ;loopdhats to enable.";
6968 })
6969 end
6970 if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
6971 droppingtools = true
6972 game:GetService("StarterGui"):SetCore("SendNotification", {
6973 Title = "Loop Drop Enabled";
6974 Text = "Type ;unloopdtool to disable";
6975 })
6976 end
6977 if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
6978 droppingtools = false
6979 game:GetService("StarterGui"):SetCore("SendNotification", {
6980 Title = "Loop Drop Disabled";
6981 Text = "Type ;loopdtool to enable.";
6982 })
6983 end
6984 if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
6985 Local = game:GetService('Players').LocalPlayer
6986 Char = Local.Character
6987 touched,tpdback = false, false
6988 box = Instance.new('Part',workspace)
6989 box.Anchored = true
6990 box.CanCollide = true
6991 box.Size = Vector3.new(10,1,10)
6992 box.Position = Vector3.new(0,10000,0)
6993 box.Touched:connect(function(part)
6994 if (part.Parent.Name == Local.Name) then
6995 if touched == false then
6996 touched = true
6997 function apply()
6998 if script.Disabled ~= true then
6999 no = Char.HumanoidRootPart:Clone()
7000 wait(.25)
7001 Char.HumanoidRootPart:Destroy()
7002 no.Parent = Char
7003 Char:MoveTo(loc)
7004 touched = false
7005 end end
7006 if Char then
7007 apply()
7008 end
7009 end
7010 end
7011 end)
7012 repeat wait() until Char
7013 loc = Char.HumanoidRootPart.Position
7014 Char:MoveTo(box.Position + Vector3.new(0,.5,0))
7015 game:GetService("StarterGui"):SetCore("SendNotification", {
7016 Title = "Invisibility enabled!";
7017 Text = "Reset or use ;respawn to remove.";
7018 })
7019 end
7020 if string.sub(msg, 1, 6) == (prefix.."view ") then
7021 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
7022 if game:GetService("Players")[v.Name].Character.Humanoid then
7023 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
7024 else
7025 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
7026 end
7027 end
7028 end
7029 if string.sub(msg, 1, 7) == (prefix.."unview") then
7030 if lplayer.Character.Humanoid then
7031 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
7032 else
7033 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
7034 end
7035 end
7036 if string.sub(msg, 1, 6) == (prefix.."goto ") then
7037 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
7038 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7039 end
7040 end
7041 if string.sub(msg, 1, 4) == (prefix.."fly") then
7042 repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
7043 repeat wait() until Mouse
7044
7045 local T = lplayer.Character.HumanoidRootPart
7046 local CONTROL = {F = 0, B = 0, L = 0, R = 0}
7047 local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
7048 local SPEED = speedget
7049
7050 local function fly()
7051 flying = true
7052 local BG = Instance.new('BodyGyro', T)
7053 local BV = Instance.new('BodyVelocity', T)
7054 BG.P = 9e4
7055 BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
7056 BG.cframe = T.CFrame
7057 BV.velocity = Vector3.new(0, 0.1, 0)
7058 BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
7059 spawn(function()
7060 repeat wait()
7061 lplayer.Character.Humanoid.PlatformStand = true
7062 if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
7063 SPEED = 50
7064 elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
7065 SPEED = 0
7066 end
7067 if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
7068 BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
7069 lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
7070 elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
7071 BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
7072 else
7073 BV.velocity = Vector3.new(0, 0.1, 0)
7074 end
7075 BG.cframe = workspace.CurrentCamera.CoordinateFrame
7076 until not flying
7077 CONTROL = {F = 0, B = 0, L = 0, R = 0}
7078 lCONTROL = {F = 0, B = 0, L = 0, R = 0}
7079 SPEED = 0
7080 BG:destroy()
7081 BV:destroy()
7082 lplayer.Character.Humanoid.PlatformStand = false
7083 end)
7084 end
7085 Mouse.KeyDown:connect(function(KEY)
7086 if KEY:lower() == 'w' then
7087 CONTROL.F = speedfly
7088 elseif KEY:lower() == 's' then
7089 CONTROL.B = -speedfly
7090 elseif KEY:lower() == 'a' then
7091 CONTROL.L = -speedfly
7092 elseif KEY:lower() == 'd' then
7093 CONTROL.R = speedfly
7094 end
7095 end)
7096 Mouse.KeyUp:connect(function(KEY)
7097 if KEY:lower() == 'w' then
7098 CONTROL.F = 0
7099 elseif KEY:lower() == 's' then
7100 CONTROL.B = 0
7101 elseif KEY:lower() == 'a' then
7102 CONTROL.L = 0
7103 elseif KEY:lower() == 'd' then
7104 CONTROL.R = 0
7105 end
7106 end)
7107 fly()
7108 end
7109 if string.sub(msg, 1, 6) == (prefix.."unfly") then
7110 flying = false
7111 lplayer.Character.Humanoid.PlatformStand = false
7112 end
7113 if string.sub(msg, 1, 6) == (prefix.."chat ") then
7114 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
7115 end
7116 if string.sub(msg, 1, 6) == (prefix.."spam ") then
7117 spamtext = (string.sub(msg, 7))
7118 spamming = true
7119 end
7120 if string.sub(msg, 1, 7) == (prefix.."unspam") then
7121 spamming = false
7122 end
7123 if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
7124 spamdelay = (string.sub(msg, 11))
7125 end
7126 if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
7127 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
7128 pmspammed = v.Name
7129 spammingpm = true
7130 end
7131 end
7132 if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
7133 spammingpm = false
7134 end
7135 if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
7136 for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
7137 v.Character["Left Leg"].Anchored = true
7138 v.Character["Left Arm"].Anchored = true
7139 v.Character["Right Leg"].Anchored = true
7140 v.Character["Right Arm"].Anchored = true
7141 v.Character.Torso.Anchored = true
7142 v.Character.Head.Anchored = true
7143 end
7144 end
7145 if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
7146 for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
7147 v.Character["Left Leg"].Anchored = false
7148 v.Character["Left Arm"].Anchored = false
7149 v.Character["Right Leg"].Anchored = false
7150 v.Character["Right Arm"].Anchored = false
7151 v.Character.Torso.Anchored = false
7152 v.Character.Head.Anchored = false
7153 end
7154 end
7155 if string.sub(msg, 1, 9) == (prefix.."unlockws") then
7156 local a = game:GetService("Workspace"):getChildren()
7157 for i = 1, #a do
7158 if a[i].className == "Part" then
7159 a[i].Locked = false
7160 elseif a[i].className == "Model" then
7161 local r = a[i]:getChildren()
7162 for i = 1, #r do
7163 if r[i].className == "Part" then
7164 r[i].Locked = false
7165 end
7166 end
7167 end
7168 end
7169 game:GetService("StarterGui"):SetCore("SendNotification", {
7170 Title = "Success!";
7171 Text = "Workspace unlocked. Use ;lockws to lock.";
7172 })
7173 end
7174 if string.sub(msg, 1, 7) == (prefix.."lockws") then
7175 local a = game:GetService("Workspace"):getChildren()
7176 for i = 1, #a do
7177 if a[i].className == "Part" then
7178 a[i].Locked = true
7179 elseif a[i].className == "Model" then
7180 local r = a[i]:getChildren()
7181 for i = 1, #r do
7182 if r[i].className == "Part" then
7183 r[i].Locked = true
7184 end
7185 end
7186 end
7187 end
7188 end
7189 if string.sub(msg, 1, 7) == (prefix.."btools") then
7190 local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
7191 Clone_T.BinType = "Clone"
7192 local Destruct = Instance.new("HopperBin",lplayer.Backpack)
7193 Destruct.BinType = "Hammer"
7194 local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
7195 Hold_T.BinType = "Grab"
7196 end
7197 if string.sub(msg, 1, 7) == (prefix.."pstand") then
7198 lplayer.Character.Humanoid.PlatformStand = true
7199 end
7200 if string.sub(msg, 1, 9) == (prefix.."unpstand") then
7201 lplayer.Character.Humanoid.PlatformStand = false
7202 end
7203 if string.sub(msg, 1, 10) == (prefix.."blockhead") then
7204 lplayer.Character.Head.Mesh:Destroy()
7205 end
7206 if string.sub(msg, 1, 4) == (prefix.."sit") then
7207 lplayer.Character.Humanoid.Sit = true
7208 end
7209 if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
7210 local function bringobjw()
7211 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
7212 if obj.Name == (string.sub(msg, 11)) then
7213 obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
7214 obj.CanCollide = false
7215 obj.Transparency = 0.7
7216 wait()
7217 obj.CFrame = lplayer.Character["Left Leg"].CFrame
7218 wait()
7219 obj.CFrame = lplayer.Character["Right Leg"].CFrame
7220 wait()
7221 obj.CFrame = lplayer.Character["Head"].CFrame
7222 end
7223 end
7224 end
7225 while wait() do
7226 bringobjw()
7227 end
7228 game:GetService("StarterGui"):SetCore("SendNotification", {
7229 Title = "BringObj";
7230 Text = "BringObj enabled.";
7231 })
7232 end
7233 if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
7234 vis = (string.sub(msg, 8))
7235 local a = game:GetService("Workspace"):GetDescendants()
7236 for i = 1, #a do
7237 if a[i].className == "Part" then
7238 a[i].Transparency = vis
7239 elseif a[i].className == "Model" then
7240 local r = a[i]:getChildren()
7241 for i = 1, #r do
7242 if r[i].className == "Part" then
7243 r[i].Transparency = vis
7244 end
7245 end
7246 end
7247 end
7248 end
7249 if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
7250 loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
7251 game:GetService("StarterGui"):SetCore("SendNotification", {
7252 Title = "Success!";
7253 Text = "HyperTotal GUI Loaded!";
7254 })
7255 end
7256 if string.sub(msg, 1, 5) == (prefix.."cmds") then
7257 CMDSFRAME.Visible = true
7258 end
7259 if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
7260 for i,v in pairs(lplayer.Character:GetChildren()) do
7261 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
7262 v.Handle.Mesh:Destroy()
7263 end
7264 end
7265 end
7266 if string.sub(msg, 1, 10) == (prefix.."blockhats") then
7267 for i,v in pairs(lplayer.Character:GetChildren()) do
7268 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
7269 v.Handle.Mesh:Destroy()
7270 end
7271 end
7272 end
7273 if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
7274 for i,v in pairs(lplayer.Character:GetChildren()) do
7275 if (v:IsA("Tool")) then
7276 v.Handle.Mesh:Destroy()
7277 end
7278 end
7279 end
7280 if string.sub(msg, 1, 10) == (prefix.."blocktool") then
7281 for i,v in pairs(lplayer.Character:GetChildren()) do
7282 if (v:IsA("Tool")) then
7283 v.Handle.Mesh:Destroy()
7284 end
7285 end
7286 end
7287 if string.sub(msg, 1, 8) == (prefix.."spinner") then
7288 local p = Instance.new("RocketPropulsion")
7289 p.Parent = lplayer.Character.HumanoidRootPart
7290 p.Name = "Spinner"
7291 p.Target = lplayer.Character["Left Arm"]
7292 p:Fire()
7293 game:GetService("StarterGui"):SetCore("SendNotification", {
7294 Title = "Spinner enabled";
7295 Text = "Type ;nospinner to disable.";
7296 })
7297 end
7298 if string.sub(msg, 1, 10) == (prefix.."nospinner") then
7299 lplayer.Character.HumanoidRootPart.Spinner:Destroy()
7300 end
7301 if string.sub(msg, 1, 7) == (prefix.."reachd") then
7302 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
7303 if v:isA("Tool") then
7304 local a = Instance.new("SelectionBox",v.Handle)
7305 a.Adornee = v.Handle
7306 v.Handle.Size = Vector3.new(0.5,0.5,60)
7307 v.GripPos = Vector3.new(0,0,0)
7308 lplayer.Character.Humanoid:UnequipTools()
7309 end
7310 end
7311 game:GetService("StarterGui"):SetCore("SendNotification", {
7312 Title = "Reach applied!";
7313 Text = "Applied to equipped sword. Use ;noreach to disable.";
7314 })
7315 end
7316 if string.sub(msg, 1, 7) == (prefix.."reach ") then
7317 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
7318 if v:isA("Tool") then
7319 handleSize = v.Handle.Size
7320 wait()
7321 local a = Instance.new("SelectionBox",v.Handle)
7322 a.Name = "a"
7323 a.Adornee = v.Handle
7324 v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
7325 v.GripPos = Vector3.new(0,0,0)
7326 lplayer.Character.Humanoid:UnequipTools()
7327 end
7328 end
7329 game:GetService("StarterGui"):SetCore("SendNotification", {
7330 Title = "Reach applied!";
7331 Text = "Applied to equipped sword. Use ;noreach to disable.";
7332 })
7333 end
7334 if string.sub(msg, 1, 8) == (prefix.."noreach") then
7335 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
7336 if v:isA("Tool") then
7337 v.Handle.a:Destroy()
7338 v.Handle.Size = handleSize
7339 end
7340 end
7341 game:GetService("StarterGui"):SetCore("SendNotification", {
7342 Title = "Reach removed!";
7343 Text = "Removed reach from equipped sword.";
7344 })
7345 end
7346 if string.sub(msg, 1, 7) == (prefix.."rkill ") then
7347 for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
7348 lplayer.Character.Humanoid.Name = 1
7349 local l = lplayer.Character["1"]:Clone()
7350 l.Parent = lplayer.Character
7351 l.Name = "Humanoid"
7352 wait(0.1)
7353 lplayer.Character["1"]:Destroy()
7354 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
7355 lplayer.Character.Animate.Disabled = true
7356 wait(0.1)
7357 lplayer.Character.Animate.Disabled = false
7358 lplayer.Character.Humanoid.DisplayDistanceType = "None"
7359 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
7360 lplayer.Character.Humanoid:EquipTool(v)
7361 end
7362 wait(0.1)
7363 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7364 wait(0.2)
7365 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7366 wait(0.5)
7367 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
7368 game:GetService("StarterGui"):SetCore("SendNotification", {
7369 Title = "Tools needed!";
7370 Text = "You need a tool in your backpack for this command!";
7371 })
7372 end
7373 end
7374 if string.sub(msg, 1, 7) == (prefix.."tp me ") then
7375 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
7376 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7377 end
7378 end
7379 if string.sub(msg, 1, 8) == (prefix.."cbring ") then
7380 if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
7381 cbringall = true
7382 else
7383 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
7384 brplr = v.Name
7385 end
7386 end
7387 cbring = true
7388 end
7389 if string.sub(msg, 1, 9) == (prefix.."uncbring") then
7390 cbring = false
7391 cbringall = false
7392 end
7393 if string.sub(msg, 1, 6) == (prefix.."swap ") then
7394 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
7395 local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7396 local NOW = lplayer.Character.HumanoidRootPart.CFrame
7397 lplayer.Character.Humanoid.Name = 1
7398 local l = lplayer.Character["1"]:Clone()
7399 l.Parent = lplayer.Character
7400 l.Name = "Humanoid"
7401 wait(0.1)
7402 lplayer.Character["1"]:Destroy()
7403 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
7404 lplayer.Character.Animate.Disabled = true
7405 wait(0.1)
7406 lplayer.Character.Animate.Disabled = false
7407 lplayer.Character.Humanoid.DisplayDistanceType = "None"
7408 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
7409 lplayer.Character.Humanoid:EquipTool(v)
7410 end
7411 local function tp(player,player2)
7412 local char1,char2=player.Character,player2.Character
7413 if char1 and char2 then
7414 char1:MoveTo(char2.Head.Position)
7415 end
7416 end
7417 wait(0.1)
7418 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7419 wait(0.2)
7420 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
7421 wait(0.5)
7422 lplayer.Character.HumanoidRootPart.CFrame = NOW
7423 wait(0.6)
7424 tp(lplayer, game:GetService("Players")[v.Name])
7425 wait(0.4)
7426 lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
7427 game:GetService("StarterGui"):SetCore("SendNotification", {
7428 Title = "Tools needed!";
7429 Text = "You need a tool in your backpack for this command!";
7430 })
7431 end
7432 end
7433 if string.sub(msg, 1, 8) == (prefix.."glitch ") then
7434 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
7435 lplayer.Character.Humanoid.Name = 1
7436 local l = lplayer.Character["1"]:Clone()
7437 l.Parent = lplayer.Character
7438 l.Name = "Humanoid"
7439 wait(0.1)
7440 lplayer.Character["1"]:Destroy()
7441 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
7442 lplayer.Character.Animate.Disabled = true
7443 wait(0.1)
7444 lplayer.Character.Animate.Disabled = false
7445 lplayer.Character.Humanoid.DisplayDistanceType = "None"
7446 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
7447 lplayer.Character.Humanoid:EquipTool(v)
7448 end
7449 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
7450 wait(0.3)
7451 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
7452 wait(0.4)
7453 b = Instance.new("BodyForce")
7454 b.Parent = lplayer.Character.HumanoidRootPart
7455 b.Name = "Glitch"
7456 b.Force = Vector3.new(100000000,5000,0)
7457 game:GetService("StarterGui"):SetCore("SendNotification", {
7458 Title = "Tools needed!";
7459 Text = "You need a tool in your backpack for this command!";
7460 })
7461 end
7462 end
7463 if string.sub(msg, 1, 9) == (prefix.."unglitch") then
7464 lplayer.Character.HumanoidRootPart.Glitch:Destroy()
7465 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
7466 b = Instance.new("BodyForce")
7467 b.Parent = lplayer.Character.HumanoidRootPart
7468 b.Name = "unGlitch"
7469 b.Force = Vector3.new(0,-5000000,0)
7470 wait(2)
7471 lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
7472 end
7473 if string.sub(msg, 1, 9) == (prefix.."grespawn") then
7474 lplayer.Character.Humanoid.Health = 0
7475 wait(1)
7476 lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
7477 lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
7478 end
7479 if string.sub(msg, 1, 9) == (prefix.."explorer") then
7480 loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
7481 game:GetService("StarterGui"):SetCore("SendNotification", {
7482 Title = "Success!";
7483 Text = "DEX Explorer has loaded.";
7484 })
7485 end
7486 if string.sub(msg, 1, 6) == (prefix.."anim ") then
7487 local Anim = Instance.new("Animation")
7488 Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
7489 local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
7490 track:Play(.1, 1, 1)
7491 end
7492 if string.sub(msg, 1, 8) == (prefix.."animgui") then
7493 loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
7494 game:GetService("StarterGui"):SetCore("SendNotification", {
7495 Title = "Success!";
7496 Text = "Energize Animations GUI has loaded.";
7497 })
7498 end
7499 if string.sub(msg, 1, 8) == (prefix.."savepos") then
7500 saved = lplayer.Character.HumanoidRootPart.CFrame
7501 game:GetService("StarterGui"):SetCore("SendNotification", {
7502 Title = "Position Saved";
7503 Text = "Use ;loadpos to return to saved position.";
7504 })
7505 end
7506 if string.sub(msg, 1, 8) == (prefix.."loadpos") then
7507 lplayer.Character.HumanoidRootPart.CFrame = saved
7508 end
7509 if string.sub(msg, 1, 6) == (prefix.."bang ") then
7510 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
7511 local Anim2 = Instance.new("Animation")
7512 Anim2.AnimationId = "rbxassetid://148840371"
7513 local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
7514 track2:Play(.1, 1, 1)
7515 bplrr = v.Name
7516 banpl = true
7517 end
7518 end
7519 if string.sub(msg, 1, 7) == (prefix.."unbang") then
7520 banpl = false
7521 end
7522 if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
7523 local function bringmodw()
7524 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
7525 if obj.Name == (string.sub(msg, 11)) then
7526 for i,ch in pairs(obj:GetDescendants()) do
7527 if (ch:IsA("BasePart")) then
7528 ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
7529 ch.CanCollide = false
7530 ch.Transparency = 0.7
7531 wait()
7532 ch.CFrame = lplayer.Character["Left Leg"].CFrame
7533 wait()
7534 ch.CFrame = lplayer.Character["Right Leg"].CFrame
7535 wait()
7536 ch.CFrame = lplayer.Character["Head"].CFrame
7537 end
7538 end
7539 end
7540 end
7541 end
7542 while wait() do
7543 bringmodw()
7544 end
7545 game:GetService("StarterGui"):SetCore("SendNotification", {
7546 Title = "BringMod";
7547 Text = "BringMod enabled.";
7548 })
7549 end
7550 if string.sub(msg, 1, 8) == (prefix.."respawn") then
7551 local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
7552 local hum = Instance.new('Humanoid', mod)
7553 local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
7554 lplayer.Character = mod
7555 end
7556 if string.sub(msg, 1, 9) == (prefix.."shutdown") then
7557 game:GetService'RunService'.Stepped:Connect(function()
7558 pcall(function()
7559 for i,v in pairs(game:GetService'Players':GetPlayers()) do
7560 if v.Character ~= nil and v.Character:FindFirstChild'Head' then
7561 for _,x in pairs(v.Character.Head:GetChildren()) do
7562 if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
7563 end
7564 end
7565 end
7566 end)
7567 end)
7568 game:GetService("StarterGui"):SetCore("SendNotification", {
7569 Title = "Attempting Shutdown";
7570 Text = "Shutdown Attempt has begun.";
7571 })
7572 end
7573 if string.sub(msg, 1, 8) == (prefix.."delobj ") then
7574 objtodel = (string.sub(msg, 9))
7575 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
7576 if v.Name == objtodel then
7577 v:Destroy()
7578 end
7579 end
7580 end
7581 if string.sub(msg, 1, 8) == (prefix.."getplrs") then
7582 for i,v in pairs(game:GetService("Players"):GetPlayers())do
7583 print(v)
7584 end
7585 game:GetService("StarterGui"):SetCore("SendNotification", {
7586 Title = "Printed";
7587 Text = "Players have been printed to console. (F9)";
7588 })
7589 end
7590 if string.sub(msg, 1, 9) == (prefix.."deldecal") then
7591 for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
7592 if (v:IsA("Decal")) then
7593 v:Destroy()
7594 end
7595 end
7596 end
7597 if string.sub(msg, 1, 11) == (prefix.."opfinality") then
7598 loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
7599 game:GetService("StarterGui"):SetCore("SendNotification", {
7600 Title = "Success!";
7601 Text = "OpFinality GUI has loaded.";
7602 })
7603 end
7604 if string.sub(msg, 1, 8) == (prefix.."remotes") then
7605 remotes = true
7606 added = true
7607 game.DescendantAdded:connect(function(rmt)
7608 if added == true then
7609 if remotes == true then
7610 if rmt:IsA("RemoteEvent") then
7611 print("A RemoteEvent was added!")
7612 print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
7613 print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
7614 end end end
7615 end)
7616 game.DescendantAdded:connect(function(rmtfnctn)
7617 if added == true then
7618 if remotes == true then
7619 if rmtfnctn:IsA("RemoteFunction") then
7620 warn("A RemoteFunction was added!")
7621 warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
7622 print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
7623 end end end
7624 end)
7625
7626 game.DescendantAdded:connect(function(bndfnctn)
7627 if added == true then
7628 if binds == true then
7629 if bndfnctn:IsA("BindableFunction") then
7630 print("A BindableFunction was added!")
7631 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
7632 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
7633 end end end
7634 end)
7635
7636 game.DescendantAdded:connect(function(bnd)
7637 if added == true then
7638 if binds == true then
7639 if bnd:IsA("BindableEvent") then
7640 warn("A BindableEvent was added!")
7641 warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
7642 print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
7643 end end end
7644 end)
7645
7646
7647 if binds == true then
7648 for i,v in pairs(game:GetDescendants()) do
7649 if v:IsA("BindableFunction") then
7650 print(" game." .. v:GetFullName() .. " | BindableFunction")
7651 print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
7652 end end
7653 for i,v in pairs(game:GetDescendants()) do
7654 if v:IsA("BindableEvent") then
7655 warn(" game." .. v:GetFullName() .. " | BindableEvent")
7656 print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
7657 end end
7658 else
7659 print("Off")
7660 end
7661 if remotes == true then
7662 for i,v in pairs(game:GetDescendants()) do
7663 if v:IsA("RemoteFunction") then
7664 warn(" game." .. v:GetFullName() .. " | RemoteFunction")
7665 print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
7666 end end
7667 wait()
7668 for i,v in pairs(game:GetDescendants()) do
7669 if v:IsA("RemoteEvent") then
7670 print(" game." .. v:GetFullName() .. " | RemoteEvent")
7671 print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
7672 end end
7673 else
7674 print("Off")
7675 end
7676 game:GetService("StarterGui"):SetCore("SendNotification", {
7677 Title = "Printing Remotes";
7678 Text = "Type ;noremotes to disable.";
7679 })
7680 end
7681 if string.sub(msg, 1, 10) == (prefix.."noremotes") then
7682 remotes = false
7683 added = false
7684 game:GetService("StarterGui"):SetCore("SendNotification", {
7685 Title = "Printing Remotes Disabled";
7686 Text = "Type ;remotes to enable.";
7687 })
7688 end
7689 if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
7690 spin = false
7691 followed = false
7692 traill = false
7693 noclip = false
7694 annoying = false
7695 hwalk = false
7696 cbringing = false
7697 end
7698 if string.sub(msg, 1, 8) == (prefix.."stopsit") then
7699 stopsitting = true
7700 end
7701 if string.sub(msg, 1, 6) == (prefix.."gosit") then
7702 stopsitting = false
7703 end
7704 if string.sub(msg, 1, 8) == (prefix.."version") then
7705 print(adminversion)
7706 game:GetService("StarterGui"):SetCore("SendNotification", {
7707 Title = "Version";
7708 Text = adminversion;
7709 })
7710 end
7711 if string.sub(msg, 1, 8) == (prefix.."clicktp") then
7712 clickgoto = true
7713 game:GetService("StarterGui"):SetCore("SendNotification", {
7714 Title = "Click TP";
7715 Text = "Press E to teleport to mouse position, ;noclicktp to stop";
7716 })
7717 end
7718 if string.sub(msg, 1, 9) == (prefix.."clickdel") then
7719 clickdel = true
7720 game:GetService("StarterGui"):SetCore("SendNotification", {
7721 Title = "Click Delete";
7722 Text = "Press E to delete part at mouse, ;noclickdel to stop";
7723 })
7724 end
7725 if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
7726 clickdel = false
7727 game:GetService("StarterGui"):SetCore("SendNotification", {
7728 Title = "Click Delete";
7729 Text = "Click delete has been disabled.";
7730 })
7731 end
7732 if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
7733 clickgoto = false
7734 game:GetService("StarterGui"):SetCore("SendNotification", {
7735 Title = "Click TP";
7736 Text = "Click TP has been disabled.";
7737 })
7738 end
7739 if string.sub(msg, 1, 8) == (prefix.."toolson") then
7740 gettingtools = true
7741 game:GetService("StarterGui"):SetCore("SendNotification", {
7742 Title = "Tools Enabled";
7743 Text = "Automatically colleting tools dropped.";
7744 })
7745 end
7746 if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
7747 gettingtools = false
7748 game:GetService("StarterGui"):SetCore("SendNotification", {
7749 Title = "Tools Disabled";
7750 Text = "Click TP has been disabled.";
7751 })
7752 end
7753 if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
7754 ScreenGui:Destroy()
7755 end
7756 if string.sub(msg, 1, 6) == (prefix.."reset") then
7757 lplayer.Character.Head:Destroy()
7758 end
7759 if string.sub(msg, 1, 7) == (prefix.."state ") then
7760 statechosen = string.sub(msg, 8)
7761 changingstate = true
7762 end
7763 if string.sub(msg, 1, 9) == (prefix.."gravity ") then
7764 game:GetService("Workspace").Gravity = string.sub(msg, 10)
7765 end
7766 if string.sub(msg, 1, 10) == (prefix.."looprhats") then
7767 removingmeshhats = true
7768 end
7769 if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
7770 removingmeshhats = false
7771 end
7772 if string.sub(msg, 1, 10) == (prefix.."looprtool") then
7773 removingmeshtool = true
7774 end
7775 if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
7776 removingmeshtool = false
7777 end
7778 if string.sub(msg, 1, 10) == (prefix.."givetool ") then
7779 for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
7780 if v:IsA("Tool") then
7781 for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
7782 v.Parent = player.Character
7783 end
7784 end
7785 end
7786 end
7787 if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
7788 for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
7789 if v:IsA("Tool") then
7790 v.Parent = lplayer.Character
7791 wait()
7792 for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
7793 v.Parent = player.Character
7794 end
7795 end
7796 end
7797 end
7798 if string.sub(msg, 1, 5) == (prefix.."age ") then
7799 for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
7800 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
7801 end
7802 end
7803 if string.sub(msg, 1, 4) == (prefix.."id ") then
7804 for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
7805 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
7806 end
7807 end
7808 if string.sub(msg, 1, 6) == (prefix..".age ") then
7809 for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
7810 game:GetService("StarterGui"):SetCore("SendNotification", {
7811 Title = player.AccountAge.." Days";
7812 Text = "Account age of "..player.Name;
7813 })
7814 end
7815 end
7816 if string.sub(msg, 1, 5) == (prefix..".id ") then
7817 for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
7818 game:GetService("StarterGui"):SetCore("SendNotification", {
7819 Title = player.UserId.." ID";
7820 Text = "Account ID of "..player.Name;
7821 })
7822 end
7823 end
7824 if string.sub(msg, 1, 7) == (prefix.."gameid") then
7825 game:GetService("StarterGui"):SetCore("SendNotification", {
7826 Title = "Game ID";
7827 Text = "Game ID: ".. game.GameId;
7828 })
7829 end
7830 if string.sub(msg, 1, 4) == (prefix.."pgs") then
7831 local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
7832 if pgscheck == true then
7833 game:GetService("StarterGui"):SetCore("SendNotification", {
7834 Title = "PGSPhysicsSolverEnabled";
7835 Text = "PGS is Enabled!";
7836 })
7837 else
7838 game:GetService("StarterGui"):SetCore("SendNotification", {
7839 Title = "PGSPhysicsSolverEnabled";
7840 Text = "PGS is Disabled!";
7841 })
7842 end
7843 end
7844 if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
7845 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
7846 if v:IsA("Part") then
7847 if v.Transparency == 1 then
7848 if v.Name ~= "HumanoidRootPart" then
7849 v:Destroy()
7850 end
7851 end
7852 end
7853 end
7854 end
7855 if string.sub(msg, 1, 10) == (prefix.."removefog") then
7856 game:GetService("Lighting").FogStart = 0
7857 game:GetService("Lighting").FogEnd = 9999999999999
7858 end
7859 if string.sub(msg, 1, 8) == (prefix.."disable") then
7860 lplayer.Character.Humanoid.Parent = lplayer
7861 end
7862 if string.sub(msg, 1, 7) == (prefix.."enable") then
7863 lplayer.Humanoid.Parent = lplayer.Character
7864 end
7865 if string.sub(msg, 1, 8) == (prefix.."prefix ") then
7866 prefix = (string.sub(msg, 9, 9))
7867 wait(0.1)
7868 change()
7869 wait(0.1)
7870 game:GetService("StarterGui"):SetCore("SendNotification", {
7871 Title = "Prefix changed!";
7872 Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
7873 })
7874 end
7875 if string.sub(msg, 1, 12) == (";resetprefix") then
7876 prefix = ";"
7877 wait(0.1)
7878 change()
7879 wait(0.1)
7880 game:GetService("StarterGui"):SetCore("SendNotification", {
7881 Title = "Prefix changed!";
7882 Text = "Prefix is now "..prefix..". Make sure it's one key!";
7883 })
7884 end
7885 if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
7886 speedfly = string.sub(msg, 11)
7887 wait()
7888 change()
7889 end
7890 if string.sub(msg, 1, 8) == (prefix.."carpet ") then
7891 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
7892 local Anim3 = Instance.new("Animation")
7893 Anim3.AnimationId = "rbxassetid://282574440"
7894 local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
7895 track3:Play(.1, 1, 1)
7896 bplrr = v.Name
7897 banpl = true
7898 end
7899 end
7900 if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
7901 banpl = false
7902 end
7903 if string.sub(msg, 1, 7) == (prefix.."stare ") then
7904 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
7905 staring = true
7906 stareplr = v
7907 end
7908 end
7909 if string.sub(msg, 1, 8) == (prefix.."unstare") then
7910 staring = false
7911 end
7912 if string.sub(msg, 1, 8) == (prefix.."logchat") then
7913 chatlogs = true
7914 game:GetService("StarterGui"):SetCore("SendNotification", {
7915 Title = "LogChat enabled";
7916 Text = "Now logging all player chat.";
7917 })
7918 end
7919 if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
7920 chatlogs = false
7921 game:GetService("StarterGui"):SetCore("SendNotification", {
7922 Title = "LogChat disabled";
7923 Text = "Stopped logging all player chat.";
7924 })
7925 end
7926 if string.sub(msg, 1, 7) == (prefix.."fixcam") then
7927 game:GetService("Workspace").CurrentCamera:Destroy()
7928 wait(0.1)
7929 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
7930 game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
7931 lplayer.CameraMinZoomDistance = 0.5
7932 lplayer.CameraMaxZoomDistance = 400
7933 lplayer.CameraMode = "Classic"
7934 end
7935 if string.sub(msg, 1, 8) == (prefix.."unstate") then
7936 changingstate = false
7937 end
7938end)
7939
7940local function tp()
7941 for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
7942 if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
7943 if player.Name == brplr then
7944 player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
7945 end
7946 end
7947 end
7948end
7949local function tpall()
7950 for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
7951 if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
7952 player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
7953 end
7954 end
7955end
7956spawn(function()
7957 while wait(spamdelay) do
7958 if spamming == true then
7959 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
7960 end
7961 end
7962end)
7963spawn(function()
7964 while wait(spamdelay) do
7965 if spammingpm == true then
7966 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
7967 end
7968 end
7969end)
7970spawn(function()
7971 while wait() do
7972 if cbring == true then
7973 tp()
7974 end
7975 end
7976end)
7977spawn(function()
7978 while wait() do
7979 if cbringall == true then
7980 tpall()
7981 end
7982 end
7983end)
7984
7985Mouse.KeyDown:connect(function(Key)
7986 if Key == prefix then
7987 CMDBAR:CaptureFocus()
7988 end
7989end)
7990
7991CMDBAR.FocusLost:connect(function(enterPressed)
7992 if enterPressed then
7993 if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
7994 if string.sub(CMDBAR.Text, 6) == "me" then
7995 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
7996 else
7997 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
7998 local NOW = lplayer.Character.HumanoidRootPart.CFrame
7999 lplayer.Character.Humanoid.Name = 1
8000 local l = lplayer.Character["1"]:Clone()
8001 l.Parent = lplayer.Character
8002 l.Name = "Humanoid"
8003 wait(0.1)
8004 lplayer.Character["1"]:Destroy()
8005 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8006 lplayer.Character.Animate.Disabled = true
8007 wait(0.1)
8008 lplayer.Character.Animate.Disabled = false
8009 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8010 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8011 lplayer.Character.Humanoid:EquipTool(v)
8012 end
8013 local function tp(player,player2)
8014 local char1,char2=player.Character,player2.Character
8015 if char1 and char2 then
8016 char1:MoveTo(char2.Head.Position)
8017 end
8018 end
8019 wait(0.1)
8020 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8021 wait(0.2)
8022 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8023 wait(0.5)
8024 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
8025 wait(0.7)
8026 tp(lplayer,game:GetService("Players")[v.Name])
8027 wait(0.7)
8028 lplayer.Character.HumanoidRootPart.CFrame = NOW
8029 game:GetService("StarterGui"):SetCore("SendNotification", {
8030 Title = "Tools needed!";
8031 Text = "You need a tool in your backpack for this command!";
8032 })
8033 end
8034 end
8035 end
8036 if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
8037 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
8038 local NOW = lplayer.Character.HumanoidRootPart.CFrame
8039 lplayer.Character.Humanoid.Name = 1
8040 local l = lplayer.Character["1"]:Clone()
8041 l.Parent = lplayer.Character
8042 l.Name = "Humanoid"
8043 wait(0.1)
8044 lplayer.Character["1"]:Destroy()
8045 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8046 lplayer.Character.Animate.Disabled = true
8047 wait(0.1)
8048 lplayer.Character.Animate.Disabled = false
8049 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8050 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8051 lplayer.Character.Humanoid:EquipTool(v)
8052 end
8053 local function tp(player,player2)
8054 local char1,char2=player.Character,player2.Character
8055 if char1 and char2 then
8056 char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
8057 end
8058 end
8059 local function getout(player,player2)
8060 local char1,char2=player.Character,player2.Character
8061 if char1 and char2 then
8062 char1:MoveTo(char2.Head.Position)
8063 end
8064 end
8065 tp(game:GetService("Players")[v.Name], lplayer)
8066 wait(0.2)
8067 tp(game:GetService("Players")[v.Name], lplayer)
8068 wait(0.5)
8069 lplayer.Character.HumanoidRootPart.CFrame = NOW
8070 wait(0.5)
8071 getout(lplayer, game:GetService("Players")[v.Name])
8072 wait(0.3)
8073 lplayer.Character.HumanoidRootPart.CFrame = NOW
8074 game:GetService("StarterGui"):SetCore("SendNotification", {
8075 Title = "Tools needed!";
8076 Text = "You need a tool in your backpack for this command!";
8077 })
8078 end
8079 end
8080 if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
8081 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
8082 lplayer.Character.Humanoid.Name = 1
8083 local l = lplayer.Character["1"]:Clone()
8084 l.Parent = lplayer.Character
8085 l.Name = "Humanoid"
8086 wait(0.1)
8087 lplayer.Character["1"]:Destroy()
8088 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8089 lplayer.Character.Animate.Disabled = true
8090 wait(0.1)
8091 lplayer.Character.Animate.Disabled = false
8092 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8093 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8094 lplayer.Character.Humanoid:EquipTool(v)
8095 end
8096 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
8097 spinplr = v
8098 wait(0.5)
8099 spin = true
8100 game:GetService("StarterGui"):SetCore("SendNotification", {
8101 Title = "Tools needed!";
8102 Text = "You need a tool in your backpack for this command!";
8103 })
8104 end
8105 end
8106 if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
8107 spin = false
8108 end
8109 if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
8110 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
8111 lplayer.Character.Humanoid.Name = 1
8112 local l = lplayer.Character["1"]:Clone()
8113 l.Parent = lplayer.Character
8114 l.Name = "Humanoid"
8115 wait(0.1)
8116 lplayer.Character["1"]:Destroy()
8117 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8118 lplayer.Character.Animate.Disabled = true
8119 wait(0.1)
8120 lplayer.Character.Animate.Disabled = false
8121 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8122 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8123 lplayer.Character.Humanoid:EquipTool(v)
8124 end
8125 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
8126 wait(0.3)
8127 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
8128 attplr = v
8129 game:GetService("StarterGui"):SetCore("SendNotification", {
8130 Title = "Tools needed!";
8131 Text = "You need a tool in your backpack for this command!";
8132 })
8133 end
8134 end
8135 if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
8136 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
8137 local function getout(player,player2)
8138 local char1,char2=player.Character,player2.Character
8139 if char1 and char2 then
8140 char1:MoveTo(char2.Head.Position)
8141 end
8142 end
8143 getout(lplayer, game:GetService("Players")[v.Name])
8144 end
8145 end
8146 if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
8147 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
8148 followed = true
8149 flwplr = v
8150 end
8151 end
8152 if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
8153 followed = false
8154 end
8155 if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
8156 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
8157 local NOW = lplayer.Character.HumanoidRootPart.CFrame
8158 lplayer.Character.Humanoid.Name = 1
8159 local l = lplayer.Character["1"]:Clone()
8160 l.Parent = lplayer.Character
8161 l.Name = "Humanoid"
8162 wait(0.1)
8163 lplayer.Character["1"]:Destroy()
8164 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8165 lplayer.Character.Animate.Disabled = true
8166 wait(0.1)
8167 lplayer.Character.Animate.Disabled = false
8168 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8169 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8170 lplayer.Character.Humanoid:EquipTool(v)
8171 end
8172 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8173 wait(0.2)
8174 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8175 wait(0.6)
8176 lplayer.Character.HumanoidRootPart.CFrame = NOW
8177 wait(0.6)
8178 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
8179 game:GetService("StarterGui"):SetCore("SendNotification", {
8180 Title = "Tools needed!";
8181 Text = "You need a tool in your backpack for this command!";
8182 })
8183 end
8184 end
8185 if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
8186 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
8187 traill = true
8188 trlplr = v
8189 end
8190 end
8191 if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
8192 traill = false
8193 end
8194 if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
8195 if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
8196 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
8197 else
8198 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
8199 local o = Instance.new("RocketPropulsion")
8200 o.Parent = lplayer.Character.HumanoidRootPart
8201 o.Name = "Orbit"
8202 o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
8203 o:Fire()
8204 noclip = true
8205 end
8206 end
8207 end
8208 if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
8209 lplayer.Character.HumanoidRootPart.Orbit:Destroy()
8210 noclip = false
8211 end
8212 if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
8213 if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
8214 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
8215 else
8216 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
8217 local y = Instance.new("RocketPropulsion")
8218 y.Parent = lplayer.Character.HumanoidRootPart
8219 y.CartoonFactor = 1
8220 y.MaxThrust = 800000
8221 y.MaxSpeed = 1000
8222 y.ThrustP = 200000
8223 y.Name = "Fling"
8224 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
8225 y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
8226 y:Fire()
8227 noclip = true
8228 end
8229 end
8230 end
8231 if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
8232 noclip = false
8233 lplayer.Character.HumanoidRootPart.Fling:Destroy()
8234 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
8235 wait(0.4)
8236 lplayer.Character.HumanoidRootPart.Fling:Destroy()
8237 end
8238 if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
8239 if game:GetService("Workspace").FilteringEnabled == true then
8240 warn("FE is Enabled (Filtering Enabled)")
8241 game:GetService("StarterGui"):SetCore("SendNotification", {
8242 Title = "FE is Enabled";
8243 Text = "Filtering Enabled. Enjoy using Reviz Admin!";
8244 })
8245 else
8246 warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
8247 game:GetService("StarterGui"):SetCore("SendNotification", {
8248 Title = "FE is Disabled";
8249 Text = "Filtering Disabled. Consider using a different admin script.";
8250 })
8251 end
8252 end
8253 if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
8254 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
8255 lplayer.Character.Humanoid.Name = 1
8256 local l = lplayer.Character["1"]:Clone()
8257 l.Parent = lplayer.Character
8258 l.Name = "Humanoid"
8259 wait(0.1)
8260 lplayer.Character["1"]:Destroy()
8261 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8262 lplayer.Character.Animate.Disabled = true
8263 wait(0.1)
8264 lplayer.Character.Animate.Disabled = false
8265 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8266 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8267 lplayer.Character.Humanoid:EquipTool(v)
8268 end
8269 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8270 wait(0.2)
8271 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8272 wait(0.6)
8273 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
8274 game:GetService("StarterGui"):SetCore("SendNotification", {
8275 Title = "Tools needed!";
8276 Text = "You need a tool in your backpack for this command!";
8277 })
8278 end
8279 end
8280 if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
8281 noclip = true
8282 game:GetService("StarterGui"):SetCore("SendNotification", {
8283 Title = "Noclip enabled";
8284 Text = "Type ;clip to disable";
8285 })
8286 end
8287 if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
8288 noclip = false
8289 game:GetService("StarterGui"):SetCore("SendNotification", {
8290 Title = "Noclip disabled";
8291 Text = "Type ;noclip to enable";
8292 })
8293 end
8294 if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
8295 lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
8296 end
8297 if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
8298 lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
8299 end
8300 if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
8301 lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
8302 end
8303 if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
8304 lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
8305 end
8306 if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
8307 lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
8308 end
8309 if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
8310 lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
8311 end
8312 if string.sub(CMDBAR.Text, 1, 7) == ("default") then
8313 lplayer.Character.Humanoid.JumpPower = 50
8314 lplayer.Character.Humanoid.WalkSpeed = 16
8315 lplayer.Character.Humanoid.HipHeight = 0
8316 end
8317 if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
8318 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
8319 annoying = true
8320 annplr = v
8321 end
8322 end
8323 if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
8324 annoying = false
8325 end
8326 if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
8327 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
8328 hwalk = true
8329 hdwplr = v
8330 end
8331 end
8332 if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
8333 hwalk = false
8334 end
8335 if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
8336 lplayer.Character["Left Leg"]:Destroy()
8337 lplayer.Character["Left Arm"]:Destroy()
8338 lplayer.Character["Right Leg"]:Destroy()
8339 lplayer.Character["Right Arm"]:Destroy()
8340 end
8341 if string.sub(CMDBAR.Text, 1, 3) == ("god") then
8342 lplayer.Character.Humanoid.Name = 1
8343 local l = lplayer.Character["1"]:Clone()
8344 l.Parent = lplayer.Character
8345 l.Name = "Humanoid"
8346 wait(0.1)
8347 lplayer.Character["1"]:Destroy()
8348 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8349 lplayer.Character.Animate.Disabled = true
8350 wait(0.1)
8351 lplayer.Character.Animate.Disabled = false
8352 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8353 game:GetService("StarterGui"):SetCore("SendNotification", {
8354 Title = "FE Godmode enabled";
8355 Text = "Use ;grespawn or ;respawn to remove.";
8356 })
8357 end
8358 if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
8359 for i,v in pairs(lplayer.Character:GetChildren()) do
8360 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
8361 v.Parent = workspace
8362 end
8363 end
8364 end
8365 if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
8366 for i,v in pairs(lplayer.Character:GetChildren()) do
8367 if (v:IsA("Tool")) then
8368 v.Parent = workspace
8369 end
8370 end
8371 end
8372 if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
8373 droppinghats = true
8374 game:GetService("StarterGui"):SetCore("SendNotification", {
8375 Title = "Loop Drop Enabled";
8376 Text = "Type ;unloopdhats to disable";
8377 })
8378 end
8379 if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
8380 droppinghats = false
8381 game:GetService("StarterGui"):SetCore("SendNotification", {
8382 Title = "Loop Drop Disabled";
8383 Text = "Type ;loopdhats to enable.";
8384 })
8385 end
8386 if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
8387 droppingtools = true
8388 game:GetService("StarterGui"):SetCore("SendNotification", {
8389 Title = "Loop Drop Enabled";
8390 Text = "Type ;unloopdtool to disable";
8391 })
8392 end
8393 if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
8394 droppingtools = false
8395 game:GetService("StarterGui"):SetCore("SendNotification", {
8396 Title = "Loop Drop Disabled";
8397 Text = "Type ;loopdtool to enable.";
8398 })
8399 end
8400 if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
8401 Local = game:GetService('Players').LocalPlayer
8402 Char = Local.Character
8403 touched,tpdback = false, false
8404 box = Instance.new('Part',workspace)
8405 box.Anchored = true
8406 box.CanCollide = true
8407 box.Size = Vector3.new(10,1,10)
8408 box.Position = Vector3.new(0,10000,0)
8409 box.Touched:connect(function(part)
8410 if (part.Parent.Name == Local.Name) then
8411 if touched == false then
8412 touched = true
8413 function apply()
8414 if script.Disabled ~= true then
8415 no = Char.HumanoidRootPart:Clone()
8416 wait(.25)
8417 Char.HumanoidRootPart:Destroy()
8418 no.Parent = Char
8419 Char:MoveTo(loc)
8420 touched = false
8421 end end
8422 if Char then
8423 apply()
8424 end
8425 end
8426 end
8427 end)
8428 repeat wait() until Char
8429 loc = Char.HumanoidRootPart.Position
8430 Char:MoveTo(box.Position + Vector3.new(0,.5,0))
8431 game:GetService("StarterGui"):SetCore("SendNotification", {
8432 Title = "Invisibility enabled!";
8433 Text = "Reset or use ;respawn to remove.";
8434 })
8435 end
8436 if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
8437 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
8438 if game:GetService("Players")[v.Name].Character.Humanoid then
8439 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
8440 else
8441 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
8442 end
8443 end
8444 end
8445 if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
8446 if lplayer.Character.Humanoid then
8447 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
8448 else
8449 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
8450 end
8451 end
8452 if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
8453 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
8454 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8455 end
8456 end
8457 if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
8458 repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
8459 repeat wait() until Mouse
8460
8461 local T = lplayer.Character.HumanoidRootPart
8462 local CONTROL = {F = 0, B = 0, L = 0, R = 0}
8463 local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
8464 local SPEED = speedget
8465
8466 local function fly()
8467 flying = true
8468 local BG = Instance.new('BodyGyro', T)
8469 local BV = Instance.new('BodyVelocity', T)
8470 BG.P = 9e4
8471 BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
8472 BG.cframe = T.CFrame
8473 BV.velocity = Vector3.new(0, 0.1, 0)
8474 BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
8475 spawn(function()
8476 repeat wait()
8477 lplayer.Character.Humanoid.PlatformStand = true
8478 if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
8479 SPEED = 50
8480 elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
8481 SPEED = 0
8482 end
8483 if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
8484 BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
8485 lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
8486 elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
8487 BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
8488 else
8489 BV.velocity = Vector3.new(0, 0.1, 0)
8490 end
8491 BG.cframe = workspace.CurrentCamera.CoordinateFrame
8492 until not flying
8493 CONTROL = {F = 0, B = 0, L = 0, R = 0}
8494 lCONTROL = {F = 0, B = 0, L = 0, R = 0}
8495 SPEED = 0
8496 BG:destroy()
8497 BV:destroy()
8498 lplayer.Character.Humanoid.PlatformStand = false
8499 end)
8500 end
8501 Mouse.KeyDown:connect(function(KEY)
8502 if KEY:lower() == 'w' then
8503 CONTROL.F = speedfly
8504 elseif KEY:lower() == 's' then
8505 CONTROL.B = -speedfly
8506 elseif KEY:lower() == 'a' then
8507 CONTROL.L = -speedfly
8508 elseif KEY:lower() == 'd' then
8509 CONTROL.R = speedfly
8510 end
8511 end)
8512 Mouse.KeyUp:connect(function(KEY)
8513 if KEY:lower() == 'w' then
8514 CONTROL.F = 0
8515 elseif KEY:lower() == 's' then
8516 CONTROL.B = 0
8517 elseif KEY:lower() == 'a' then
8518 CONTROL.L = 0
8519 elseif KEY:lower() == 'd' then
8520 CONTROL.R = 0
8521 end
8522 end)
8523 fly()
8524 end
8525 if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
8526 flying = false
8527 lplayer.Character.Humanoid.PlatformStand = false
8528 end
8529 if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
8530 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
8531 end
8532 if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
8533 spamtext = (string.sub(CMDBAR.Text, 6))
8534 spamming = true
8535 end
8536 if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
8537 spamming = false
8538 end
8539 if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
8540 spamdelay = (string.sub(CMDBAR.Text, 10))
8541 end
8542 if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
8543 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
8544 pmspammed = v.Name
8545 spammingpm = true
8546 end
8547 end
8548 if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
8549 spammingpm = false
8550 end
8551 if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
8552 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
8553 v.Character["Left Leg"].Anchored = true
8554 v.Character["Left Arm"].Anchored = true
8555 v.Character["Right Leg"].Anchored = true
8556 v.Character["Right Arm"].Anchored = true
8557 v.Character.Torso.Anchored = true
8558 v.Character.Head.Anchored = true
8559 end
8560 end
8561 if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
8562 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
8563 v.Character["Left Leg"].Anchored = false
8564 v.Character["Left Arm"].Anchored = false
8565 v.Character["Right Leg"].Anchored = false
8566 v.Character["Right Arm"].Anchored = false
8567 v.Character.Torso.Anchored = false
8568 v.Character.Head.Anchored = false
8569 end
8570 end
8571 if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
8572 local a = game:GetService("Workspace"):getChildren()
8573 for i = 1, #a do
8574 if a[i].className == "Part" then
8575 a[i].Locked = false
8576 elseif a[i].className == "Model" then
8577 local r = a[i]:getChildren()
8578 for i = 1, #r do
8579 if r[i].className == "Part" then
8580 r[i].Locked = false
8581 end
8582 end
8583 end
8584 end
8585 game:GetService("StarterGui"):SetCore("SendNotification", {
8586 Title = "Success!";
8587 Text = "Workspace unlocked. Use ;lockws to lock.";
8588 })
8589 end
8590 if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
8591 local a = game:GetService("Workspace"):getChildren()
8592 for i = 1, #a do
8593 if a[i].className == "Part" then
8594 a[i].Locked = true
8595 elseif a[i].className == "Model" then
8596 local r = a[i]:getChildren()
8597 for i = 1, #r do
8598 if r[i].className == "Part" then
8599 r[i].Locked = true
8600 end
8601 end
8602 end
8603 end
8604 end
8605 if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
8606 local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
8607 Clone_T.BinType = "Clone"
8608 local Destruct = Instance.new("HopperBin",lplayer.Backpack)
8609 Destruct.BinType = "Hammer"
8610 local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
8611 Hold_T.BinType = "Grab"
8612 end
8613 if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
8614 lplayer.Character.Humanoid.PlatformStand = true
8615 end
8616 if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
8617 lplayer.Character.Humanoid.PlatformStand = false
8618 end
8619 if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
8620 lplayer.Character.Head.Mesh:Destroy()
8621 end
8622 if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
8623 lplayer.Character.Humanoid.Sit = true
8624 end
8625 if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
8626 local function bringobjw()
8627 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
8628 if obj.Name == (string.sub(CMDBAR.Text, 10)) then
8629 obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
8630 obj.CanCollide = false
8631 obj.Transparency = 0.7
8632 wait()
8633 obj.CFrame = lplayer.Character["Left Leg"].CFrame
8634 wait()
8635 obj.CFrame = lplayer.Character["Right Leg"].CFrame
8636 wait()
8637 obj.CFrame = lplayer.Character["Head"].CFrame
8638 end
8639 end
8640 end
8641 while wait() do
8642 bringobjw()
8643 end
8644 game:GetService("StarterGui"):SetCore("SendNotification", {
8645 Title = "BringObj";
8646 Text = "BringObj enabled.";
8647 })
8648 end
8649 if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
8650 vis = (string.sub(CMDBAR.Text, 7))
8651 local a = game:GetService("Workspace"):GetDescendants()
8652 for i = 1, #a do
8653 if a[i].className == "Part" then
8654 a[i].Transparency = vis
8655 elseif a[i].className == "Model" then
8656 local r = a[i]:getChildren()
8657 for i = 1, #r do
8658 if r[i].className == "Part" then
8659 r[i].Transparency = vis
8660 end
8661 end
8662 end
8663 end
8664 end
8665 if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
8666 loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
8667 game:GetService("StarterGui"):SetCore("SendNotification", {
8668 Title = "Success!";
8669 Text = "HyperTotal GUI Loaded!";
8670 })
8671 end
8672 if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
8673 CMDSFRAME.Visible = true
8674 end
8675 if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
8676 for i,v in pairs(lplayer.Character:GetChildren()) do
8677 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
8678 v.Handle.Mesh:Destroy()
8679 end
8680 end
8681 end
8682 if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
8683 for i,v in pairs(lplayer.Character:GetChildren()) do
8684 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
8685 v.Handle.Mesh:Destroy()
8686 end
8687 end
8688 end
8689 if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
8690 for i,v in pairs(lplayer.Character:GetChildren()) do
8691 if (v:IsA("Tool")) then
8692 v.Handle.Mesh:Destroy()
8693 end
8694 end
8695 end
8696 if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
8697 for i,v in pairs(lplayer.Character:GetChildren()) do
8698 if (v:IsA("Tool")) then
8699 v.Handle.Mesh:Destroy()
8700 end
8701 end
8702 end
8703 if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
8704 local p = Instance.new("RocketPropulsion")
8705 p.Parent = lplayer.Character.HumanoidRootPart
8706 p.Name = "Spinner"
8707 p.Target = lplayer.Character["Left Arm"]
8708 p:Fire()
8709 game:GetService("StarterGui"):SetCore("SendNotification", {
8710 Title = "Spinner enabled";
8711 Text = "Type ;nospinner to disable.";
8712 })
8713 end
8714 if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
8715 lplayer.Character.HumanoidRootPart.Spinner:Destroy()
8716 end
8717 if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
8718 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
8719 if v:isA("Tool") then
8720 local a = Instance.new("SelectionBox",v.Handle)
8721 a.Adornee = v.Handle
8722 v.Handle.Size = Vector3.new(0.5,0.5,60)
8723 v.GripPos = Vector3.new(0,0,0)
8724 lplayer.Character.Humanoid:UnequipTools()
8725 end
8726 end
8727 game:GetService("StarterGui"):SetCore("SendNotification", {
8728 Title = "Reach applied!";
8729 Text = "Applied to equipped sword. Use ;noreach to disable.";
8730 })
8731 end
8732 if string.sub(CMDBAR.Text, 1, 6) == ("reach ") then
8733 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
8734 if v:isA("Tool") then
8735 local a = Instance.new("SelectionBox",v.Handle)
8736 a.Name = "Reach"
8737 a.Adornee = v.Handle
8738 v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
8739 v.GripPos = Vector3.new(0,0,0)
8740 lplayer.Character.Humanoid:UnequipTools()
8741 end
8742 end
8743 game:GetService("StarterGui"):SetCore("SendNotification", {
8744 Title = "Reach applied!";
8745 Text = "Applied to equipped sword. Use ;noreach to disable.";
8746 })
8747 end
8748 if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
8749 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
8750 if v:isA("Tool") then
8751 v.Handle.Reach:Destroy()
8752 end
8753 end
8754 game:GetService("StarterGui"):SetCore("SendNotification", {
8755 Title = "Reach removed!";
8756 Text = "Removed reach from equipped sword.";
8757 })
8758 end
8759 if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
8760 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
8761 lplayer.Character.Humanoid.Name = 1
8762 local l = lplayer.Character["1"]:Clone()
8763 l.Parent = lplayer.Character
8764 l.Name = "Humanoid"
8765 wait(0.1)
8766 lplayer.Character["1"]:Destroy()
8767 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8768 lplayer.Character.Animate.Disabled = true
8769 wait(0.1)
8770 lplayer.Character.Animate.Disabled = false
8771 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8772 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8773 lplayer.Character.Humanoid:EquipTool(v)
8774 end
8775 wait(0.1)
8776 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8777 wait(0.2)
8778 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8779 wait(0.5)
8780 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
8781 game:GetService("StarterGui"):SetCore("SendNotification", {
8782 Title = "Tools needed!";
8783 Text = "You need a tool in your backpack for this command!";
8784 })
8785 end
8786 end
8787 if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
8788 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
8789 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8790 end
8791 end
8792 if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
8793 if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
8794 cbringall = true
8795 else
8796 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
8797 brplr = v.Name
8798 end
8799 end
8800 cbring = true
8801 end
8802 if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
8803 cbring = false
8804 cbringall = false
8805 end
8806 if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
8807 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
8808 local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8809 local NOW = lplayer.Character.HumanoidRootPart.CFrame
8810 lplayer.Character.Humanoid.Name = 1
8811 local l = lplayer.Character["1"]:Clone()
8812 l.Parent = lplayer.Character
8813 l.Name = "Humanoid"
8814 wait(0.1)
8815 lplayer.Character["1"]:Destroy()
8816 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8817 lplayer.Character.Animate.Disabled = true
8818 wait(0.1)
8819 lplayer.Character.Animate.Disabled = false
8820 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8821 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8822 lplayer.Character.Humanoid:EquipTool(v)
8823 end
8824 local function tp(player,player2)
8825 local char1,char2=player.Character,player2.Character
8826 if char1 and char2 then
8827 char1:MoveTo(char2.Head.Position)
8828 end
8829 end
8830 wait(0.1)
8831 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8832 wait(0.2)
8833 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
8834 wait(0.5)
8835 lplayer.Character.HumanoidRootPart.CFrame = NOW
8836 wait(0.6)
8837 tp(lplayer, game:GetService("Players")[v.Name])
8838 wait(0.4)
8839 lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
8840 game:GetService("StarterGui"):SetCore("SendNotification", {
8841 Title = "Tools needed!";
8842 Text = "You need a tool in your backpack for this command!";
8843 })
8844 end
8845 end
8846 if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
8847 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
8848 lplayer.Character.Humanoid.Name = 1
8849 local l = lplayer.Character["1"]:Clone()
8850 l.Parent = lplayer.Character
8851 l.Name = "Humanoid"
8852 wait(0.1)
8853 lplayer.Character["1"]:Destroy()
8854 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
8855 lplayer.Character.Animate.Disabled = true
8856 wait(0.1)
8857 lplayer.Character.Animate.Disabled = false
8858 lplayer.Character.Humanoid.DisplayDistanceType = "None"
8859 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
8860 lplayer.Character.Humanoid:EquipTool(v)
8861 end
8862 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
8863 wait(0.3)
8864 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
8865 wait(0.4)
8866 b = Instance.new("BodyForce")
8867 b.Parent = lplayer.Character.HumanoidRootPart
8868 b.Name = "Glitch"
8869 b.Force = Vector3.new(100000000,5000,0)
8870 game:GetService("StarterGui"):SetCore("SendNotification", {
8871 Title = "Tools needed!";
8872 Text = "You need a tool in your backpack for this command!";
8873 })
8874 end
8875 end
8876 if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
8877 lplayer.Character.HumanoidRootPart.Glitch:Destroy()
8878 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
8879 b = Instance.new("BodyForce")
8880 b.Parent = lplayer.Character.HumanoidRootPart
8881 b.Name = "unGlitch"
8882 b.Force = Vector3.new(0,-5000000,0)
8883 wait(2)
8884 lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
8885 end
8886 if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
8887 lplayer.Character.Humanoid.Health = 0
8888 wait(1)
8889 lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
8890 lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
8891 end
8892 if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
8893 loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
8894 game:GetService("StarterGui"):SetCore("SendNotification", {
8895 Title = "Success!";
8896 Text = "DEX Explorer has loaded.";
8897 })
8898 end
8899 if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
8900 local Anim = Instance.new("Animation")
8901 Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
8902 local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
8903 track:Play(.1, 1, 1)
8904 end
8905 if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
8906 loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
8907 game:GetService("StarterGui"):SetCore("SendNotification", {
8908 Title = "Success!";
8909 Text = "Energize Animations GUI has loaded.";
8910 })
8911 end
8912 if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
8913 saved = lplayer.Character.HumanoidRootPart.CFrame
8914 game:GetService("StarterGui"):SetCore("SendNotification", {
8915 Title = "Position Saved";
8916 Text = "Use ;loadpos to return to saved position.";
8917 })
8918 end
8919 if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
8920 lplayer.Character.HumanoidRootPart.CFrame = saved
8921 end
8922 if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
8923 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
8924 local Anim2 = Instance.new("Animation")
8925 Anim2.AnimationId = "rbxassetid://148840371"
8926 local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
8927 track2:Play(.1, 1, 1)
8928 bplrr = v.Name
8929 banpl = true
8930 end
8931 end
8932 if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
8933 banpl = false
8934 end
8935 if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
8936 local function bringmodw()
8937 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
8938 if obj.Name == (string.sub(CMDBAR.Text, 10)) then
8939 for i,ch in pairs(obj:GetDescendants()) do
8940 if (ch:IsA("BasePart")) then
8941 ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
8942 ch.CanCollide = false
8943 ch.Transparency = 0.7
8944 wait()
8945 ch.CFrame = lplayer.Character["Left Leg"].CFrame
8946 wait()
8947 ch.CFrame = lplayer.Character["Right Leg"].CFrame
8948 wait()
8949 ch.CFrame = lplayer.Character["Head"].CFrame
8950 end
8951 end
8952 end
8953 end
8954 end
8955 while wait() do
8956 bringmodw()
8957 end
8958 game:GetService("StarterGui"):SetCore("SendNotification", {
8959 Title = "BringMod";
8960 Text = "BringMod enabled.";
8961 })
8962 end
8963 if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
8964 local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
8965 local hum = Instance.new('Humanoid', mod)
8966 local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
8967 lplayer.Character = mod
8968 end
8969 if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
8970 game:GetService'RunService'.Stepped:Connect(function()
8971 pcall(function()
8972 for i,v in pairs(game:GetService'Players':GetPlayers()) do
8973 if v.Character ~= nil and v.Character:FindFirstChild'Head' then
8974 for _,x in pairs(v.Character.Head:GetChildren()) do
8975 if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
8976 end
8977 end
8978 end
8979 end)
8980 end)
8981 game:GetService("StarterGui"):SetCore("SendNotification", {
8982 Title = "Attempting Shutdown";
8983 Text = "Shutdown Attempt has begun.";
8984 })
8985 end
8986 if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
8987 objtodel = (string.sub(CMDBAR.Text, 8))
8988 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
8989 if v.Name == objtodel then
8990 v:Destroy()
8991 end
8992 end
8993 end
8994 if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
8995 for i,v in pairs(game:GetService("Players"):GetPlayers())do
8996 print(v)
8997 end
8998 game:GetService("StarterGui"):SetCore("SendNotification", {
8999 Title = "Printed";
9000 Text = "Players have been printed to console. (F9)";
9001 })
9002 end
9003 if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
9004 for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
9005 if (v:IsA("Decal")) then
9006 v:Destroy()
9007 end
9008 end
9009 end
9010 if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
9011 loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
9012 game:GetService("StarterGui"):SetCore("SendNotification", {
9013 Title = "Success!";
9014 Text = "OpFinality GUI has loaded.";
9015 })
9016 end
9017 if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
9018 remotes = true
9019 added = true
9020 game.DescendantAdded:connect(function(rmt)
9021 if added == true then
9022 if remotes == true then
9023 if rmt:IsA("RemoteEvent") then
9024 print("A RemoteEvent was added!")
9025 print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
9026 print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
9027 end end end
9028 end)
9029 game.DescendantAdded:connect(function(rmtfnctn)
9030 if added == true then
9031 if remotes == true then
9032 if rmtfnctn:IsA("RemoteFunction") then
9033 warn("A RemoteFunction was added!")
9034 warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
9035 print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
9036 end end end
9037 end)
9038
9039 game.DescendantAdded:connect(function(bndfnctn)
9040 if added == true then
9041 if binds == true then
9042 if bndfnctn:IsA("BindableFunction") then
9043 print("A BindableFunction was added!")
9044 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
9045 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
9046 end end end
9047 end)
9048
9049 game.DescendantAdded:connect(function(bnd)
9050 if added == true then
9051 if binds == true then
9052 if bnd:IsA("BindableEvent") then
9053 warn("A BindableEvent was added!")
9054 warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
9055 print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
9056 end end end
9057 end)
9058
9059
9060 if binds == true then
9061 for i,v in pairs(game:GetDescendants()) do
9062 if v:IsA("BindableFunction") then
9063 print(" game." .. v:GetFullName() .. " | BindableFunction")
9064 print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
9065 end end
9066 for i,v in pairs(game:GetDescendants()) do
9067 if v:IsA("BindableEvent") then
9068 warn(" game." .. v:GetFullName() .. " | BindableEvent")
9069 print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
9070 end end
9071 else
9072 print("Off")
9073 end
9074 if remotes == true then
9075 for i,v in pairs(game:GetDescendants()) do
9076 if v:IsA("RemoteFunction") then
9077 warn(" game." .. v:GetFullName() .. " | RemoteFunction")
9078 print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
9079 end end
9080 wait()
9081 for i,v in pairs(game:GetDescendants()) do
9082 if v:IsA("RemoteEvent") then
9083 print(" game." .. v:GetFullName() .. " | RemoteEvent")
9084 print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
9085 end end
9086 else
9087 print("Off")
9088 end
9089 game:GetService("StarterGui"):SetCore("SendNotification", {
9090 Title = "Printing Remotes";
9091 Text = "Type ;noremotes to disable.";
9092 })
9093 end
9094 if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
9095 remotes = false
9096 added = false
9097 game:GetService("StarterGui"):SetCore("SendNotification", {
9098 Title = "Printing Remotes Disabled";
9099 Text = "Type ;remotes to enable.";
9100 })
9101 end
9102 if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
9103 spin = false
9104 followed = false
9105 traill = false
9106 noclip = false
9107 annoying = false
9108 hwalk = false
9109 cbringing = false
9110 end
9111 if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
9112 stopsitting = true
9113 end
9114 if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
9115 stopsitting = false
9116 end
9117 if string.sub(CMDBAR.Text, 1, 7) == ("version") then
9118 print(adminversion)
9119 game:GetService("StarterGui"):SetCore("SendNotification", {
9120 Title = "Version";
9121 Text = adminversion;
9122 })
9123 end
9124 if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
9125 clickgoto = true
9126 game:GetService("StarterGui"):SetCore("SendNotification", {
9127 Title = "Click TP";
9128 Text = "Press E to teleport to mouse position";
9129 })
9130 end
9131 if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
9132 clickgoto = false
9133 game:GetService("StarterGui"):SetCore("SendNotification", {
9134 Title = "Click TP";
9135 Text = "Click TP has been disabled.";
9136 })
9137 end
9138 if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
9139 gettingtools = true
9140 game:GetService("StarterGui"):SetCore("SendNotification", {
9141 Title = "Tools Enabled";
9142 Text = "Automatically colleting tools dropped.";
9143 })
9144 end
9145 if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
9146 gettingtools = false
9147 game:GetService("StarterGui"):SetCore("SendNotification", {
9148 Title = "Tools Disabled";
9149 Text = "Click TP has been disabled.";
9150 })
9151 end
9152 if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
9153 ScreenGui:Destroy()
9154 end
9155 if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
9156 lplayer.Character.Head:Destroy()
9157 end
9158 if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
9159 statechosen = string.sub(CMDBAR.Text, 7)
9160 changingstate = true
9161 end
9162 if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
9163 game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
9164 end
9165 if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
9166 removingmeshhats = true
9167 end
9168 if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
9169 removingmeshhats = false
9170 end
9171 if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
9172 removingmeshtool = true
9173 end
9174 if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
9175 removingmeshtool = false
9176 end
9177 if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
9178 for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
9179 if v:IsA("Tool") then
9180 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
9181 v.Parent = player.Character
9182 end
9183 end
9184 end
9185 end
9186 if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
9187 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
9188 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
9189 end
9190 end
9191 if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
9192 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
9193 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
9194 end
9195 end
9196 if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
9197 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
9198 game:GetService("StarterGui"):SetCore("SendNotification", {
9199 Title = player.AccountAge.." Days";
9200 Text = "Account age of "..player.Name;
9201 })
9202 end
9203 end
9204 if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
9205 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
9206 game:GetService("StarterGui"):SetCore("SendNotification", {
9207 Title = player.UserId.." ID";
9208 Text = "Account ID of "..player.Name;
9209 })
9210 end
9211 end
9212 if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
9213 game:GetService("StarterGui"):SetCore("SendNotification", {
9214 Title = "Game ID";
9215 Text = "Game ID: ".. game.GameId;
9216 })
9217 end
9218 if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
9219 local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
9220 if pgscheck == true then
9221 game:GetService("StarterGui"):SetCore("SendNotification", {
9222 Title = "PGSPhysicsSolverEnabled";
9223 Text = "PGS is Enabled!";
9224 })
9225 else
9226 game:GetService("StarterGui"):SetCore("SendNotification", {
9227 Title = "PGSPhysicsSolverEnabled";
9228 Text = "PGS is Disabled!";
9229 })
9230 end
9231 end
9232 if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
9233 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
9234 if v:IsA("Part") then
9235 if v.Transparency == 1 then
9236 if v.Name ~= "HumanoidRootPart" then
9237 v:Destroy()
9238 end
9239 end
9240 end
9241 end
9242 end
9243 if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
9244 game:GetService("Lighting").FogStart = 0
9245 game:GetService("Lighting").FogEnd = 9999999999999
9246 end
9247 if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
9248 lplayer.Character.Humanoid.Parent = lplayer
9249 end
9250 if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
9251 lplayer.Humanoid.Parent = lplayer.Character
9252 end
9253 if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
9254 for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
9255 if v:IsA("Tool") then
9256 v.Parent = lplayer.Character
9257 wait()
9258 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
9259 v.Parent = player.Character
9260 end
9261 end
9262 end
9263 end
9264 if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
9265 speedfly = string.sub(CMDBAR.Text, 10)
9266 wait()
9267 change()
9268 end
9269 if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
9270 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
9271 local Anim3 = Instance.new("Animation")
9272 Anim3.AnimationId = "rbxassetid://282574440"
9273 local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
9274 track3:Play(.1, 1, 1)
9275 bplrr = v.Name
9276 banpl = true
9277 end
9278 end
9279 if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
9280 banpl = false
9281 end
9282 if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
9283 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
9284 staring = true
9285 stareplr = v
9286 end
9287 end
9288 if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
9289 staring = false
9290 end
9291 if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
9292 chatlogs = true
9293 game:GetService("StarterGui"):SetCore("SendNotification", {
9294 Title = "LogChat enabled";
9295 Text = "Now logging all player chat.";
9296 })
9297 end
9298 if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
9299 chatlogs = false
9300 game:GetService("StarterGui"):SetCore("SendNotification", {
9301 Title = "LogChat disabled";
9302 Text = "Stopped logging all player chat.";
9303 })
9304 end
9305 if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
9306 game:GetService("Workspace").CurrentCamera:Destroy()
9307 wait(0.1)
9308 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
9309 game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
9310 lplayer.CameraMinZoomDistance = 0.5
9311 lplayer.CameraMaxZoomDistance = 400
9312 lplayer.CameraMode = "Classic"
9313 end
9314 if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
9315 changingstate = false
9316 end
9317 CMDBAR.Text = ""
9318 end
9319end)
9320
9321wait(0.3)
9322game:GetService("StarterGui"):SetCore("SendNotification", {
9323 Title = "Loaded successfully!";
9324 Text = "Reviz Admin V2 by illremember";
9325})
9326wait(0.1)
9327print("Reviz Admin V2 loaded!")
9328if game:GetService("Workspace").FilteringEnabled == true then
9329 warn("FE is Enabled (Filtering Enabled)")
9330 game:GetService("StarterGui"):SetCore("SendNotification", {
9331 Title = "FE is Enabled";
9332 Text = "Filtering Enabled. Enjoy using Reviz Admin!";
9333 })
9334else
9335 warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
9336 game:GetService("StarterGui"):SetCore("SendNotification", {
9337 Title = "FE is Disabled";
9338 Text = "Filtering Disabled. Consider using a different admin script.";
9339 })
9340end
9341
9342local intro = Instance.new("ScreenGui")
9343local Frame = Instance.new("Frame")
9344local ImageLabel = Instance.new("ImageLabel")
9345intro.Parent = game:GetService("CoreGui")
9346Frame.Parent = intro
9347Frame.BackgroundColor3 = Color3.new(1, 1, 1)
9348Frame.BackgroundTransparency = 1
9349Frame.Size = UDim2.new(1, 0, 0, 300)
9350Frame.Position = UDim2.new(0, 0, -0.4, 0)
9351ImageLabel.Parent = Frame
9352ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
9353ImageLabel.BackgroundTransparency = 1
9354ImageLabel.Position = UDim2.new(0, 0, 0, 0)
9355ImageLabel.Size = UDim2.new(1, 0, 1, 0)
9356ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
9357Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
9358wait(3.01)
9359Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
9360wait(5.01)
9361intro:Destroy()
9362
9363local player = game:GetService("Players").LocalPlayer
9364
9365player.Chatted:connect(function(message)
9366 if string.sub(message:lower(), 1, 6) == ".venom" then
9367 local fiPlayer = string.sub(message:lower(), 8)
9368 for _, v in pairs(game.Players:GetPlayers()) do
9369 if string.sub(v.Name:lower(), 1, #fiPlayer) == fiPlayer then
9370 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9371 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9372 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9373 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9374 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9375 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9376 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9377 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9378 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9379 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9380 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9381 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9382 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9383 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9384 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9385 end
9386 end
9387 end
9388end)
9389
9390local player = game:GetService("Players").LocalPlayer
9391
9392player.Chatted:connect(function(message)
9393 if string.sub(message:lower(), 1, 5) == ".loop" then
9394 local fiPlayer = string.sub(message:lower(), 7)
9395 for _, v in pairs(game.Players:GetPlayers()) do
9396 if string.sub(v.Name:lower(), 1, #fiPlayer) == fiPlayer then
9397 _G.toggle = true
9398 while _G.toggle do
9399 wait(0.1)
9400 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
9401 end
9402 end
9403 end
9404 end
9405end)
9406
9407for i,v in pairs(game.Players:GetChildren()) do
9408 if v.Name == "MrBoss1212112" then
9409 game.workspace.Events.ChangeVabil:FireServer("Venom")
9410 while true do
9411 game.workspace.Events.Vampire.Venom:FireServer("MrBoss1212112")
9412 wait()
9413 end
9414 end
9415 if v.Name == "DesertedLies" then
9416 game.workspace.Events.ChangeVabil:FireServer("Venom")
9417 while true do
9418 game.workspace.Events.Vampire.Venom:FireServer("DesertedLies")
9419 wait()
9420 end
9421 end
9422end
9423
9424-- Gui to Lua
9425-- Version: 3.2
9426
9427-- Instances:
9428
9429local a = Instance.new("ScreenGui")
9430local v = Instance.new("Frame")
9431local TextLabel = Instance.new("TextLabel")
9432local d = Instance.new("Frame")
9433local TextLabel_2 = Instance.new("TextLabel")
9434
9435--Properties:
9436
9437a.Name = "a"
9438a.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
9439a.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
9440
9441v.Name = "v"
9442v.Parent = a
9443v.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
9444v.BackgroundTransparency = 0.100
9445v.Position = UDim2.new(0.922424257, 0, 0.196050778, 0)
9446v.Size = UDim2.new(0, 128, 0, 65)
9447
9448TextLabel.Parent = v
9449TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
9450TextLabel.BackgroundTransparency = 1.000
9451TextLabel.Size = UDim2.new(0, 128, 0, 67)
9452TextLabel.Font = Enum.Font.SciFi
9453TextLabel.Text = ""
9454TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
9455TextLabel.TextScaled = true
9456TextLabel.TextSize = 24.000
9457TextLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
9458TextLabel.TextWrapped = true
9459
9460d.Name = "d"
9461d.Parent = a
9462d.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
9463d.BackgroundTransparency = 0.100
9464d.Position = UDim2.new(0.922424257, 0, 0.287729204, 0)
9465d.Size = UDim2.new(0, 128, 0, 65)
9466
9467TextLabel_2.Parent = d
9468TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
9469TextLabel_2.BackgroundTransparency = 1.000
9470TextLabel_2.Size = UDim2.new(0, 128, 0, 67)
9471TextLabel_2.Font = Enum.Font.SciFi
9472TextLabel_2.Text = ""
9473TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
9474TextLabel_2.TextScaled = true
9475TextLabel_2.TextSize = 24.000
9476TextLabel_2.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
9477TextLabel_2.TextWrapped = true
9478
9479-- Scripts:
9480
9481local function HZBLUJC_fake_script() -- a.u
9482 local script = Instance.new('Script', a)
9483
9484 local Player = game.Players.LocalPlayer
9485 for i,v in pairs(workspace.GameData.Players:GetChildren()) do
9486 if v.Mode.Value == 3 then
9487 script.Parent.v.TextLabel.Text = v.Name.." is vampire"
9488 elseif v.Mode.Value == 2 then
9489 script.Parent.d.TextLabel.Text = v.Name.." is detective"
9490 end
9491 end
9492 while true do
9493 wait(0.1)
9494 for i,v in pairs(workspace.GameData.Players:GetChildren()) do
9495 if v.Mode.Value == 3 then
9496 script.Parent.v.TextLabel.Text = v.Name.." is vampire"
9497 elseif v.Mode.Value == 2 then
9498 script.Parent.d.TextLabel.Text = v.Name.." is detective"
9499 elseif game.workspace.GameData.RoundType.Value == "Helpless" then
9500 script.Parent.d.TextLabel.Text = ""
9501 script.Parent.d.Visible = true
9502 script.Parent.v.Visible = true
9503 end
9504 end
9505 end
9506
9507
9508end
9509coroutine.wrap(HZBLUJC_fake_script)()
9510
9511local plr = game:GetService("Players").LocalPlayer
9512
9513local plr = game:GetService("Players").LocalPlayer
9514
9515plr.Chatted:connect(function(message)
9516 if string.sub(message:lower(), 1, 9) == ";timestop" then
9517 _G.clapped = true
9518 while _G.clapped do
9519 wait()
9520 for _, v in pairs(game.Players:GetChildren()) do
9521 game.Workspace.Events.ChangeVabil:FireServer("Freeze")
9522 wait(0.001)
9523 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9524 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9525 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9526 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9527 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9528 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9529 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9530 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9531 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9532 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9533 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9534 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9535 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9536 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9537 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9538 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9539 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9540 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9541 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9542 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9543 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9544 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9545 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9546 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9547 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9548 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9549 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9550 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9551 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9552 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9553 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9554 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9555 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9556 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9557 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9558 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9559 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9560 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9561 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9562 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9563 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9564 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9565 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9566 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9567 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9568 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9569 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9570 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9571 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9572 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9573 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9574 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9575 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9576 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9577 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9578 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9579 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9580 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9581 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9582 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9583 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9584 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9585 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9586 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9587 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9588 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9589 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9590 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9591 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9592 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9593 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9594 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9595 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9596 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9597 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9598 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9599 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9600 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9601 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9602 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9603 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9604 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9605 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9606 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9607 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9608 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9609 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9610 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9611 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9612 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9613 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9614 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9615 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9616 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9617 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9618 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9619 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9620 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9621 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9622 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9623 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9624 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9625 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9626 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9627 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9628 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9629 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9630 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9631 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9632 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9633 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9634 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9635 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9636 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9637 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9638 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9639 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9640 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9641 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9642 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9643 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9644 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9645 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9646 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9647 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9648 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9649 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9650 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9651 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9652 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9653 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9654 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9655 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9656 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9657 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9658 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9659 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9660 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9661 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9662 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9663 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9664 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9665 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9666 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9667 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9668 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9669 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9670 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9671 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9672 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9673 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9674 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9675 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9676 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9677 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9678 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9679 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9680 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9681 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9682 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9683 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9684 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9685 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9686 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9687 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9688 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9689 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9690 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9691 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9692 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9693 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9694 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9695 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9696 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9697 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9698 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9699 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9700 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9701 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9702 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9703 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9704 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9705 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9706 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9707 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9708 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9709 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9710 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9711 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9712 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9713 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9714 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9715 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9716 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9717 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9718 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9719 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9720 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9721 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9722 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9723 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9724 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9725 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9726 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9727 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9728 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9729 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9730 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9731 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9732 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9733 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9734 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9735 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9736 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9737 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9738 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9739 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9740 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9741 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9742 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9743 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9744 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9745 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9746 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9747 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9748 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9749 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9750 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9751 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9752 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9753 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9754 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9755 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9756 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9757 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9758 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9759 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9760 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9761 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9762 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9763 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9764 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9765 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9766 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9767 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9768 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9769 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9770 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9771 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9772 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9773 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9774 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9775 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9776 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9777 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9778 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9779 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9780 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9781 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9782 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9783 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9784 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9785 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9786 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9787 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9788 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9789 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9790 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9791 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9792 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9793 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9794 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9795 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9796 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9797 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9798 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9799 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9800 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9801 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9802 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9803 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9804 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9805 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9806 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9807 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9808 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9809 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9810 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9811 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9812 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9813 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9814 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9815 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9816 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9817 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9818 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9819 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9820 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9821 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9822 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9823 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9824 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9825 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9826 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9827 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9828 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9829 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9830 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9831 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9832 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9833 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9834 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9835 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9836 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9837 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9838 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9839 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9840 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9841 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9842 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9843 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9844 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9845 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9846 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9847 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9848 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9849 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9850 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9851 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9852 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9853 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9854 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9855 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9856 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9857 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9858 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9859 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9860 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9861 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9862 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9863 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9864 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9865 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9866 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9867 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9868 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9869 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9870 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9871 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9872 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9873 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9874 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9875 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9876 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9877 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9878 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9879 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9880 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9881 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9882 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9883 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9884 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9885 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9886 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9887 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9888 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9889 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9890 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9891 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9892 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9893 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9894 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9895 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9896 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9897 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9898 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9899 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9900 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9901 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9902 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9903 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9904 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9905 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9906 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9907 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9908 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9909 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9910 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9911 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9912 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9913 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9914 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9915 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9916 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9917 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9918 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9919 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9920 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9921 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9922 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9923 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9924 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9925 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9926 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9927 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9928 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9929 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9930 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9931 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9932 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9933 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9934 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9935 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9936 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9937 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9938 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9939 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9940 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9941 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9942 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9943 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9944 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9945 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9946 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9947 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9948 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9949 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9950 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9951 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9952 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9953 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9954 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9955 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9956 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9957 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9958 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9959 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9960 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9961 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9962 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9963 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9964 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9965 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9966 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9967 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9968 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9969 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9970 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9971 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9972 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9973 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9974 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9975 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9976 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9977 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9978 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9979 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9980 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9981 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9982 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9983 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9984 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9985 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9986 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9987 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9988 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9989 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9990 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9991 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9992 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9993 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9994 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9995 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9996 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9997 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9998 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
9999 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10000 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10001 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10002 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10003 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10004 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10005 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10006 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10007 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10008 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10009 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10010 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10011 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10012 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10013 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10014 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10015 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10016 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10017 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10018 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10019 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10020 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10021 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10022 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10023 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10024 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10025 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10026 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10027 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10028 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10029 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10030 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10031 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10032 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10033 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10034 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10035 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10036 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10037 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10038 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10039 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10040 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10041 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10042 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10043 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10044 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10045 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10046 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10047 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10048 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10049 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10050 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10051 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10052 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10053 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10054 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10055 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10056 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10057 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10058 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10059 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10060 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10061 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10062 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10063 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10064 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10065 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10066 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10067 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10068 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10069 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10070 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10071 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10072 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10073 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10074 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10075 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10076 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10077 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10078 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10079 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10080 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10081 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10082 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10083 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10084 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10085 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10086 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10087 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10088 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10089 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10090 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10091 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10092 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10093 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10094 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10095 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10096 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10097 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10098 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10099 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10100 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10101 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10102 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10103 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10104 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10105 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10106 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10107 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10108 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10109 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10110 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10111 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10112 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10113 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10114 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10115 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10116 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10117 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10118 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10119 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10120 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10121 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10122 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10123 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10124 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10125 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10126 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10127 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10128 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10129 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10130 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10131 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10132 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10133 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10134 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10135 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10136 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10137 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10138 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10139 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10140 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10141 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10142 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10143 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10144 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10145 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10146 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10147 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10148 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10149 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10150 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10151 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10152 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10153 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10154 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10155 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10156 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10157 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10158 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10159 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10160 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10161 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10162 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10163 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10164 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10165 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10166 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10167 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10168 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10169 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10170 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10171 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10172 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10173 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10174 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10175 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10176 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10177 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10178 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10179 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10180 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10181 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10182 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10183 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10184 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10185 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10186 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10187 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10188 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10189 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10190 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10191 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10192 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10193 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10194 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10195 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10196 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10197 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10198 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10199 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10200 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10201 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10202 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10203 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10204 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10205 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10206 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10207 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10208 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10209 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10210 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10211 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10212 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10213 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10214 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10215 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10216 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10217 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10218 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10219 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10220 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10221 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10222 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10223 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10224 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10225 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10226 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10227 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10228 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10229 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10230 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10231 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10232 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10233 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10234 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10235 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10236 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10237 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10238 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10239 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10240 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10241 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10242 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10243 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10244 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10245 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10246 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10247 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10248 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10249 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10250 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10251 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10252 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10253 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10254 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10255 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10256 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10257 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10258 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10259 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10260 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10261 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10262 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10263 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10264 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10265 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10266 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10267 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10268 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10269 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10270 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10271 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10272 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10273 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10274 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10275 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10276 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10277 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10278 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10279 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10280 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10281 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10282 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10283 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10284 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10285 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10286 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10287 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10288 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10289 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10290 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10291 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10292 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10293 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10294 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10295 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10296 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10297 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10298 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10299 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10300 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10301 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10302 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10303 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10304 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10305 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10306 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10307 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10308 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10309 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10310 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10311 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10312 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10313 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10314 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10315 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10316 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10317 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10318 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10319 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10320 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10321 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10322 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10323 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10324 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10325 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10326 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10327 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10328 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10329 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10330 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10331 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10332 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10333 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10334 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10335 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10336 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10337 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10338 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10339 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10340 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10341 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10342 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10343 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10344 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10345 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10346 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10347 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10348 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10349 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10350 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10351 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10352 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10353 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10354 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10355 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10356 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10357 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10358 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10359 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10360 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10361 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10362 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10363 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10364 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10365 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10366 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10367 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10368 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10369 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10370 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10371 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10372 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10373 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10374 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10375 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10376 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10377 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10378 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10379 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10380 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10381 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10382 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10383 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10384 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10385 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10386 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10387 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10388 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10389 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10390 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10391 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10392 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10393 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10394 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10395 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10396 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10397 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10398 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10399 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10400 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10401 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10402 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10403 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10404 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10405 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10406 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10407 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10408 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10409 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10410 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10411 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10412 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10413 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10414 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10415 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10416 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10417 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10418 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10419 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10420 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10421 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10422 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10423 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10424 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10425 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10426 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10427 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10428 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10429 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10430 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10431 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10432 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10433 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10434 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10435 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10436 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10437 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10438 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10439 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10440 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10441 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10442 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10443 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10444 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10445 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10446 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10447 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10448 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10449 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10450 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10451 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10452 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10453 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10454 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10455 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10456 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10457 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10458 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10459 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10460 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10461 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10462 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10463 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10464 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10465 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10466 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10467 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10468 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10469 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10470 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10471 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10472 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10473 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10474 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10475 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10476 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10477 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10478 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10479 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10480 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10481 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10482 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10483 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10484 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10485 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10486 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10487 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10488 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10489 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10490 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10491 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10492 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10493 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10494 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10495 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10496 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10497 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10498 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10499 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10500 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10501 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10502 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10503 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10504 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10505 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10506 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10507 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10508 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10509 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10510 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10511 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10512 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10513 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10514 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10515 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10516 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10517 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10518 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10519 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10520 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10521 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10522 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10523 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10524 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10525 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10526 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10527 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10528 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10529 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10530 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10531 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10532 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10533 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10534 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10535 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10536 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10537 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10538 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10539 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10540 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10541 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10542 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10543 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10544 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10545 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10546 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10547 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10548 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10549 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10550 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10551 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10552 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10553 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10554 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10555 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10556 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10557 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10558 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10559 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10560 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10561 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10562 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10563 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10564 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10565 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10566 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10567 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10568 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10569 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10570 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10571 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10572 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10573 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10574 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10575 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10576 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10577 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10578 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10579 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10580 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10581 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10582 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10583 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10584 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10585 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10586 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10587 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10588 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10589 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10590 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10591 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10592 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10593 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10594 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10595 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10596 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10597 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10598 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10599 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10600 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10601 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10602 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10603 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10604 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10605 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10606 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10607 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10608 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10609 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10610 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10611 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10612 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10613 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10614 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10615 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10616 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10617 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10618 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10619 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10620 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10621 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10622 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10623 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10624 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10625 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10626 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10627 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10628 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10629 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10630 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10631 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10632 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10633 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10634 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10635 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10636 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10637 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10638 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10639 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10640 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10641 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10642 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10643 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10644 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10645 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10646 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10647 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10648 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10649 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10650 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10651 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10652 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10653 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10654 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10655 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10656 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10657 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10658 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10659 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10660 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10661 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10662 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10663 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10664 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10665 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10666 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10667 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10668 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10669 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10670 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10671 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10672 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10673 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10674 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10675 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10676 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10677 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10678 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10679 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10680 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10681 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10682 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10683 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10684 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10685 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10686 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10687 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10688 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10689 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10690 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10691 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10692 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10693 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10694 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10695 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10696 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10697 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10698 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10699 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10700 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10701 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10702 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10703 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10704 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10705 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10706 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10707 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10708 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10709 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10710 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10711 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10712 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10713 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10714 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10715 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10716 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10717 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10718 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10719 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10720 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10721 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10722 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10723 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10724 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10725 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10726 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10727 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10728 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10729 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10730 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10731 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10732 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10733 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10734 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10735 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10736 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10737 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10738 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10739 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10740 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10741 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10742 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10743 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10744 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10745 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10746 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10747 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10748 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10749 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10750 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10751 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10752 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10753 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10754 game.Workspace.Events.Vampire.FireballIce:FireServer(v.Name)
10755 end
10756 end
10757 end
10758end)
10759
10760plr = game:GetService("Players").LocalPlayer
10761
10762plr.Chatted:connect(function(message)
10763 if string.sub(message:lower(), 1, 9) == ".venomall" then
10764 local repeats = 10000
10765 local plrs = game:GetService("Players")
10766 local plr = plrs.LocalPlayer
10767
10768 repeat
10769 for i,v in pairs(plrs:GetChildren()) do
10770 if v.Name ~= plr.Name then
10771 game.Workspace.Events.Vampire.Venom:FireServer(v.Name)
10772 end
10773 end
10774 repeats = repeats - 1
10775 until repeats <= 0
10776end
10777end)
10778
10779plr.Chatted:connect(function(message)
10780 if string.sub(message.lower(), 1, 6) == ";dskin" then
10781 game.workspace.Events.ChangeVabil:FireServer("Diamondskin")
10782 end
10783end)
10784
10785plr.Chatted:connect(function(message)
10786 if string.sub(message.lower(), 1, 6) == ";vvenom" then
10787 game.workspace.Events.ChangeVabil:FireServer("Venom")
10788 end
10789end)
10790
10791for i,v in pairs(game.Players:GetChildren()) do
10792 if v.Name == "ixhela" then
10793 game.workspace.Events.ChangeVabil:FireServer("Venom")
10794 while true do
10795 game.workspace.Events.Vampire.Venom:FireServer("ixhela")
10796 end
10797 end
10798end
10799
10800local m = game.Players.LocalPlayer:GetMouse()
10801db = true
10802m.KeyDown:connect(function(k)
10803 k = k:lower()
10804 if k == "q" then
10805 if db == true then
10806game.Workspace.CurrentCamera.FieldOfView = 80
10807 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 23
10808 end
10809 end
10810
10811end)
10812
10813local m = game.Players.LocalPlayer:GetMouse()
10814db = true
10815m.KeyDown:connect(function(k)
10816 k = k:lower()
10817 if k == "y" then
10818 if db == true then
10819game.Workspace.CurrentCamera.FieldOfView = 65
10820 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
10821 end
10822 end
10823
10824end)
10825end
10826if game.Players.LocalPlayer.Name == "nicklvh" then
10827 usescript()
10828end
10829if game.Players.LocalPlayer.Name == "lvnsie" then
10830 usescript()
10831end
10832if game.Players.LocalPlayer.Name == "Q_OVxbes" then
10833 usescript()
10834end
10835if game.Players.LocalPlayer.Name == "c_er" then
10836 usescript()
10837end
10838if game.Players.LocalPlayer.Name == "Al1103" then
10839 usescript()
10840end
10841if game.Players.LocalPlayer.Name == "iiIceTiger" then
10842 usescript()
10843end