Advertisement
EPICLEGOHACKEROMG

Untitled

Apr 4th, 2020
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.11 KB | None | 0 0
  1. -- IGNORE THIS, THIS IS JUST THE UI C:
  2. function WallyLib()
  3.     local i = {
  4.         windowcount = 0
  5.     }
  6.     local d = {}
  7.     local b = {}
  8.     do
  9.         local e = game:GetService("Players").LocalPlayer:GetMouse()
  10.         local a = game:GetService('UserInputService')
  11.         local c = game:GetService("RunService").Heartbeat
  12.         function d.new(f)
  13.             local d, b = pcall(function()
  14.                 return f.MouseEnter
  15.             end)
  16.             if d then
  17.                 f.Active = true
  18.                 b:connect(function()
  19.                     local a = f.InputBegan:connect(function(b)
  20.                         if b.UserInputType == Enum.UserInputType.MouseButton1 then
  21.                             local b = Vector2.new(e.X - f.AbsolutePosition.X, e.Y - f.AbsolutePosition.Y)
  22.                             while c:wait() and a:IsMouseButtonPressed(Enum.UserInputType.MouseButton1) do
  23.                                 f:TweenPosition(UDim2.new(0, e.X - b.X + (f.Size.X.Offset * f.AnchorPoint.X), 0, e.Y - b.Y + (f.Size.Y.Offset * f.AnchorPoint.Y)), 'Out', 'Quad', 0.1, true)
  24.                             end
  25.                         end
  26.                     end)
  27.                     local b
  28.                     b = f.MouseLeave:connect(function()
  29.                         a:disconnect()
  30.                         b:disconnect()
  31.                     end)
  32.                 end)
  33.             end
  34.         end
  35.         function b.new(a, b)
  36.             a:GetPropertyChangedSignal('AbsoluteSize'):connect(function()
  37.                 b.Size = UDim2.new(b.Size.X.Scale, b.Size.X.Offset, b.Size.Y.Scale, a.AbsoluteSize.Y)
  38.             end)
  39.         end
  40.     end
  41.     local a = {
  42.         txtcolor = Color3.fromRGB(255, 255, 255),
  43.         underline = Color3.fromRGB(0, 255, 140),
  44.         barcolor = Color3.fromRGB(40, 40, 40),
  45.         bgcolor = Color3.fromRGB(30, 30, 30)
  46.     }
  47.     function i:Create(a, b)
  48.         local c = Instance.new(a)
  49.         for b, a in next, b do
  50.             if b ~= "Parent" then
  51.                 c[b] = a
  52.             end
  53.         end
  54.         c.Parent = b.Parent
  55.         return c
  56.     end
  57.     function i:CreateWindow(c)
  58.         assert(c.text, "no name")
  59.         local e = {
  60.             count = 0;
  61.             toggles = {},
  62.             closed = false
  63.         }
  64.         local c = c or {}
  65.         setmetatable(c, {
  66.             __index = a
  67.         })
  68.         self.windowcount = self.windowcount + 1
  69.         i.gui = i.gui or self:Create("ScreenGui", {
  70.             Name = "UILibrary",
  71.             Parent = game:GetService("CoreGui")
  72.         })
  73.         e.frame = self:Create("Frame", {
  74.             Name = c.text;
  75.             Parent = self.gui,
  76.             Active = true,
  77.             BackgroundTransparency = 0,
  78.             Size = UDim2.new(0, 190, 0, 30),
  79.             Position = UDim2.new(0, (15 + ((200 * self.windowcount) - 200)), 0, 15),
  80.             BackgroundColor3 = c.barcolor,
  81.             BorderSizePixel = 0
  82.         })
  83.         e.background = self:Create('Frame', {
  84.             Name = 'Background';
  85.             Parent = e.frame,
  86.             BorderSizePixel = 0;
  87.             BackgroundColor3 = c.bgcolor,
  88.             Position = UDim2.new(0, 0, 1, 0),
  89.             Size = UDim2.new(1, 0, 0, 25),
  90.             ClipsDescendants = true
  91.         })
  92.         e.container = self:Create('Frame', {
  93.             Name = 'Container';
  94.             Parent = e.frame,
  95.             BorderSizePixel = 0;
  96.             BackgroundColor3 = c.bgcolor,
  97.             Position = UDim2.new(0, 0, 1, 0),
  98.             Size = UDim2.new(1, 0, 0, 25),
  99.             ClipsDescendants = true
  100.         })
  101.         e.organizer = self:Create('UIListLayout', {
  102.             Name = 'Sorter';
  103.             SortOrder = Enum.SortOrder.LayoutOrder;
  104.             Parent = e.container
  105.         })
  106.         e.padder = self:Create('UIPadding', {
  107.             Name = 'Padding';
  108.             PaddingLeft = UDim.new(0, 10);
  109.             PaddingTop = UDim.new(0, 5);
  110.             Parent = e.container
  111.         })
  112.         self:Create("Frame", {
  113.             Name = 'Underline';
  114.             Size = UDim2.new(1, 0, 0, 1),
  115.             Position = UDim2.new(0, 0, 1, -1),
  116.             BorderSizePixel = 0;
  117.             BackgroundColor3 = c.underline;
  118.             Parent = e.frame
  119.         })
  120.         local a = self:Create("TextButton", {
  121.             Name = 'Toggle';
  122.             ZIndex = 2,
  123.             BackgroundTransparency = 1;
  124.             Position = UDim2.new(1, -25, 0, 0),
  125.             Size = UDim2.new(0, 25, 1, 0),
  126.             Text = "-",
  127.             TextSize = 17,
  128.             TextColor3 = c.txtcolor,
  129.             Font = Enum.Font.SourceSans;
  130.             Parent = e.frame
  131.         })
  132.         a.MouseButton1Click:connect(function()
  133.             e.closed = not e.closed
  134.             a.Text = (e.closed and "+" or "-")
  135.             if e.closed then
  136.                 e:Resize(true, UDim2.new(1, 0, 0, 0))
  137.             else
  138.                 e:Resize(true)
  139.             end
  140.         end)
  141.         self:Create("TextLabel", {
  142.             Size = UDim2.new(1, 0, 1, 0),
  143.             BackgroundTransparency = 1;
  144.             BorderSizePixel = 0;
  145.             TextColor3 = c.txtcolor,
  146.             TextColor3 = (c.bartextcolor or Color3.fromRGB(255, 255, 255));
  147.             TextSize = 17,
  148.             Font = Enum.Font.SourceSansSemibold;
  149.             Text = c.text or "window",
  150.             Name = "Window",
  151.             Parent = e.frame
  152.         })
  153.         do
  154.             d.new(e.frame)
  155.             b.new(e.background, e.container)
  156.         end
  157.         local function a()
  158.             local b = 0
  159.             for a, a in next, e.container:GetChildren() do
  160.                 if (not a:IsA('UIListLayout')) and (not a:IsA('UIPadding')) then
  161.                     b = b + a.AbsoluteSize.Y
  162.                 end
  163.             end
  164.             return UDim2.new(1, 0, 0, b + 10)
  165.         end
  166.         function e:Resize(b, c)
  167.             local a = c or a()
  168.             self.container.ClipsDescendants = true
  169.             if b then
  170.                 self.background:TweenSize(a, "Out", "Sine", 0.5, true)
  171.             else
  172.                 self.background.Size = a
  173.             end
  174.         end
  175.         function e:AddToggle(c, b)
  176.             self.count = self.count + 1
  177.             b = b or function()
  178.             end
  179.             local a = i:Create("TextLabel", {
  180.                 Text = c,
  181.                 Size = UDim2.new(1, -10, 0, 20);
  182.                 BackgroundTransparency = 1;
  183.                 TextColor3 = Color3.fromRGB(255, 255, 255);
  184.                 TextXAlignment = Enum.TextXAlignment.Left;
  185.                 LayoutOrder = self.Count;
  186.                 TextSize = 16,
  187.                 Font = Enum.Font.SourceSans,
  188.                 Parent = self.container
  189.             })
  190.             local a = i:Create("TextButton", {
  191.                 Text = "OFF",
  192.                 TextColor3 = Color3.fromRGB(255, 25, 25),
  193.                 BackgroundTransparency = 1;
  194.                 Position = UDim2.new(1, -25, 0, 0),
  195.                 Size = UDim2.new(0, 25, 1, 0),
  196.                 TextSize = 17,
  197.                 Font = Enum.Font.SourceSansSemibold,
  198.                 Parent = a
  199.             })
  200.             a.MouseButton1Click:connect(function()
  201.                 self.toggles[c] = (not self.toggles[c])
  202.                 a.TextColor3 = (self.toggles[c] and Color3.fromRGB(0, 255, 140) or Color3.fromRGB(255, 25, 25))
  203.                 a.Text = (self.toggles[c] and "ON" or "OFF")
  204.                 b(self.toggles[c])
  205.             end)
  206.             self:Resize()
  207.             return a
  208.         end
  209.         function e:AddBox(a, b)
  210.             self.count = self.count + 1
  211.             b = b or function()
  212.             end
  213.             local a = i:Create("TextBox", {
  214.                 PlaceholderText = a,
  215.                 Size = UDim2.new(1, -10, 0, 20);
  216.                 BackgroundTransparency = 0.75;
  217.                 BackgroundColor3 = c.boxcolor,
  218.                 TextColor3 = Color3.fromRGB(255, 255, 255);
  219.                 TextXAlignment = Enum.TextXAlignment.Center;
  220.                 TextSize = 16,
  221.                 Text = "",
  222.                 Font = Enum.Font.SourceSans,
  223.                 LayoutOrder = self.Count;
  224.                 BorderSizePixel = 0;
  225.                 Parent = self.container
  226.             })
  227.             a.FocusLost:connect(function(...)
  228.                 b(a, ...)
  229.             end)
  230.             self:Resize()
  231.             return a
  232.         end
  233.         function e:AddButton(a, b)
  234.             self.count = self.count + 1
  235.             b = b or function()
  236.             end
  237.             local a = i:Create("TextButton", {
  238.                 Text = a,
  239.                 Size = UDim2.new(1, -10, 0, 20);
  240.                 BackgroundTransparency = 1;
  241.                 TextColor3 = Color3.fromRGB(255, 255, 255);
  242.                 TextXAlignment = Enum.TextXAlignment.Left;
  243.                 TextSize = 16,
  244.                 Font = Enum.Font.SourceSans,
  245.                 LayoutOrder = self.Count;
  246.                 Parent = self.container
  247.             })
  248.             a.MouseButton1Click:connect(b)
  249.             self:Resize()
  250.             return a
  251.         end
  252.         function e:AddLabel(b)
  253.             self.count = self.count + 1
  254.             local a = game:GetService('TextService'):GetTextSize(b, 16, Enum.Font.SourceSans, Vector2.new(math.huge, math.huge))
  255.             local a = i:Create("TextLabel", {
  256.                 Text = b,
  257.                 Size = UDim2.new(1, -10, 0, a.Y + 5);
  258.                 TextScaled = false;
  259.                 BackgroundTransparency = 1;
  260.                 TextColor3 = Color3.fromRGB(255, 255, 255);
  261.                 TextXAlignment = Enum.TextXAlignment.Left;
  262.                 TextSize = 16,
  263.                 Font = Enum.Font.SourceSans,
  264.                 LayoutOrder = self.Count;
  265.                 Parent = self.container
  266.             })
  267.             self:Resize()
  268.             return a
  269.         end
  270.         function e:AddDropdown(g, e)
  271.             self.count = self.count + 1
  272.             local c = g[1] or ""
  273.             e = e or function()
  274.             end
  275.             local f = i:Create("TextLabel", {
  276.                 Size = UDim2.new(1, -10, 0, 20);
  277.                 BackgroundTransparency = 0.75;
  278.                 BackgroundColor3 = g.boxcolor,
  279.                 TextColor3 = Color3.fromRGB(255, 255, 255);
  280.                 TextXAlignment = Enum.TextXAlignment.Center;
  281.                 TextSize = 16,
  282.                 Text = c,
  283.                 Font = Enum.Font.SourceSans,
  284.                 BorderSizePixel = 0;
  285.                 LayoutOrder = self.Count;
  286.                 Parent = self.container
  287.             })
  288.             local b = i:Create("ImageButton", {
  289.                 BackgroundTransparency = 1;
  290.                 Image = 'rbxassetid://3234893186';
  291.                 Size = UDim2.new(0, 18, 1, 0);
  292.                 Position = UDim2.new(1, -20, 0, 0);
  293.                 Parent = f
  294.             })
  295.             local h
  296.             local function a(c)
  297.                 local a = game:GetService('UserInputService'):GetMouseLocation()
  298.                 local e = Vector2.new(a.X, a.Y - 36)
  299.                 local a, b = c.AbsolutePosition.X, c.AbsolutePosition.X + c.AbsoluteSize.X
  300.                 local d, c = c.AbsolutePosition.Y, c.AbsolutePosition.Y + c.AbsoluteSize.Y
  301.                 return (e.X >= a and e.X <= b) and (e.Y >= d and e.Y <= c)
  302.             end
  303.             local function d(a)
  304.                 local b = 0
  305.                 for a, a in next, a do
  306.                     b = b + 1
  307.                 end
  308.                 return b
  309.             end
  310.             b.MouseButton1Click:connect(function()
  311.                 if d(g) == 0 then
  312.                     return
  313.                 end
  314.                 if h then
  315.                     h:Destroy()
  316.                     h = nil
  317.                 end
  318.                 self.container.ClipsDescendants = false
  319.                 h = i:Create('Frame', {
  320.                     Position = UDim2.new(0, 0, 1, 0);
  321.                     BackgroundColor3 = Color3.fromRGB(40, 40, 40);
  322.                     Size = UDim2.new(0, f.AbsoluteSize.X, 0, (d(g) * 21));
  323.                     BorderSizePixel = 0;
  324.                     Parent = f;
  325.                     ClipsDescendants = true;
  326.                     ZIndex = 2
  327.                 })
  328.                 i:Create('UIListLayout', {
  329.                     Name = 'Layout';
  330.                     Parent = h
  331.                 })
  332.                 for a, b in next, g do
  333.                     local a = i:Create('TextButton', {
  334.                         Text = b;
  335.                         BackgroundColor3 = Color3.fromRGB(40, 40, 40);
  336.                         TextColor3 = Color3.fromRGB(255, 255, 255);
  337.                         BorderSizePixel = 0;
  338.                         TextSize = 16;
  339.                         Font = Enum.Font.SourceSans;
  340.                         Size = UDim2.new(1, 0, 0, 21);
  341.                         Parent = h;
  342.                         ZIndex = 2
  343.                     })
  344.                     a.MouseButton1Click:connect(function()
  345.                         f.Text = b
  346.                         e(b)
  347.                         h.Size = UDim2.new(1, 0, 0, 0)
  348.                         game:GetService('Debris'):AddItem(h, 0.1)
  349.                     end)
  350.                 end
  351.             end)
  352.             game:GetService('UserInputService').InputBegan:connect(function(b)
  353.                 if b.UserInputType == Enum.UserInputType.MouseButton1 then
  354.                     if h and (not a(h)) then
  355.                         game:GetService('Debris'):AddItem(h)
  356.                     end
  357.                 end
  358.             end)
  359.             e(c)
  360.             self:Resize()
  361.             return {
  362.                 Refresh = function(a, a)
  363.                     game:GetService('Debris'):AddItem(h)
  364.                     g = a
  365.                     f.Text = g[1]
  366.                 end
  367.             }
  368.         end
  369.         return e
  370.     end
  371.     return i
  372. end
  373.  
  374.  
  375. ------------ these are the exploits
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382. if game:HttpGet("https://pastebin.com/raw/CBPxGy15") == "true" then
  383.     local a = WallyLib()
  384.     local e = {}
  385.     function insertGunModules()
  386.         for a, a in pairs(game:GetService("ReplicatedStorage").WeaponScripts.WeaponConfigs:GetChildren()) do
  387.             table.insert(e, a)
  388.         end
  389.     end
  390.     function getClosestPlayer()
  391.         local b = math.huge
  392.         local c = nil
  393.         for a, a in pairs(game.Players:GetPlayers()) do
  394.             if a.Character ~= nil then
  395.                 if a ~= game.Players.LocalPlayer then
  396.                     if b > (a.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude then
  397.                         b = (a.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude
  398.                         c = a
  399.                     end
  400.                 end
  401.             end
  402.         end
  403.         return c
  404.     end
  405.     function getClosestTycoon()
  406.         local c = math.huge
  407.         local b = nil
  408.         for a, a in pairs(game:GetService("Workspace").Tycoons:GetChildren()) do
  409.             if a.Baseplate ~= nil then
  410.                 if a.Owner.Value ~= tostring(game.Players.LocalPlayer) then
  411.                     if c > (a.Baseplate.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude then
  412.                         c = (a.Baseplate.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude
  413.                         b = a
  414.                     end
  415.                 end
  416.             end
  417.         end
  418.         return b
  419.     end
  420.     insertGunModules()
  421.     local c = a:CreateWindow({
  422.         text = "Combat"
  423.     })
  424.     local b = a:CreateWindow({
  425.         text = "Money"
  426.     })
  427.     local d = a:CreateWindow({
  428.         text = "Visual [FD]"
  429.     })
  430.     local a = a:CreateWindow({
  431.         text = "Credits"
  432.     })
  433.     a:AddLabel("Credits to Dvck on v3rmillion\nDvck#8882 - Enjoy!\n\nIf an admin joins your \ngame, you should be kicked.")
  434.     _G.rainbowBullets = false
  435.     _G.autoFarm = false
  436.     _G.nuke = false
  437.     _G.antiMod = false
  438.     _G.vaultCollect = false
  439.     c:AddButton("Super Fast Fire", function()
  440.         for a, a in pairs(e) do
  441.             if game.Players.LocalPlayer.Character ~= nil then
  442.                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then --- gun mod
  443.                     require(a).fireMode = 1
  444.                     require(a).RPM = 999
  445.                 end
  446.             end
  447.         end
  448.     end)
  449.     c:AddButton("Fast Reload", function()
  450.         for a, a in pairs(e) do
  451.             if game.Players.LocalPlayer.Character ~= nil then
  452.                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then ---- gun mod
  453.                     require(a).reloadTime = 0
  454.                 end
  455.             end
  456.         end
  457.     end)
  458.     d:AddToggle("Rainbow Bullets", function()
  459.         _G.rainbowBullets = not _G.rainbowBullets
  460.     end)
  461.     b:AddToggle("Vault Collect", function()
  462.         _G.vaultCollect = not _G.vaultCollect
  463.     end)
  464.     b:AddToggle("Nuke", function()
  465.         _G.nuke = not _G.nuke
  466.     end)
  467.     c:AddButton("No Spread", function()
  468.         for a, a in pairs(e) do
  469.             if game.Players.LocalPlayer.Character ~= nil then
  470.                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then
  471.                     while wait() do
  472.                         if game.Players.LocalPlayer.Character ~= nil then
  473.                             require(a).spreadAdd = 0
  474.                             require(a).minSpread = 0
  475.                             require(a).maxSpread = 0
  476.                         end
  477.                     end
  478.                 end
  479.             end
  480.         end
  481.     end)
  482.     c:AddButton("Extra Bullets", function()
  483.         for a, a in pairs(e) do
  484.             if game.Players.LocalPlayer.Character ~= nil then
  485.                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then
  486.                     while wait() do
  487.                         if game.Players.LocalPlayer.Character ~= nil then
  488.                             require(a).pellets = 5
  489.                         end
  490.                     end
  491.                 end
  492.             end
  493.         end
  494.     end)
  495.     d:AddButton("Hitbox Expander", function()
  496.         for a, a in pairs(game.Players:GetPlayers()) do
  497.             if a.Character ~= nil then
  498.                 if a ~= game.Players.LocalPlayer then
  499.                     a.Character.HumanoidRootPart.Size = Vector3.new(10, 10, 10)
  500.                     a.Character.HumanoidRootPart.Transparency = 0.5
  501.                 end
  502.             end
  503.         end
  504.     end)
  505.     d:AddButton("Mario Muzzle Flash", function()
  506.         for a, a in pairs(e) do
  507.             if game.Players.LocalPlayer.Character ~= nil then
  508.                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then
  509.                     while wait() do
  510.                         if game.Players.LocalPlayer.Character ~= nil then
  511.                             require(a).muzzleFlashIDs = {
  512.                                 "154756490"
  513.                             }
  514.                         end
  515.                     end
  516.                 end
  517.             end
  518.         end
  519.     end)
  520.     d:AddButton("Large Bullet", function()
  521.         for a, a in pairs(e) do
  522.             if game.Players.LocalPlayer.Character ~= nil then
  523.                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then
  524.                     while wait() do
  525.                         if game.Players.LocalPlayer.Character ~= nil then
  526.                             require(a).bulletSize = Vector3.new(10, 10, 10)
  527.                         end
  528.                     end
  529.                 end
  530.             end
  531.         end
  532.     end)
  533.     b:AddToggle("Kill Aura", function()
  534.         _G.autoFarm = not _G.autoFarm
  535.     end)
  536.     game:GetService("RunService").RenderStepped:connect(function()
  537.         if _G.rainbowBullets then
  538.             for a, a in pairs(e) do
  539.                 if game.Players.LocalPlayer.Character ~= nil then
  540.                     if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name == tostring(a) then
  541.                         if game.Players.LocalPlayer.Character ~= nil then
  542.                             require(a).bulletColor = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255))
  543.                         end
  544.                     end
  545.                 end
  546.             end
  547.         end
  548.         if _G.autoFarm then
  549.             game.ReplicatedStorage.WeaponScripts.Events.MeleeDamageEvent:FireServer(getClosestPlayer().Character, getClosestPlayer().Character.HumanoidRootPart)
  550.         end
  551.         if _G.nuke then
  552.             for a, a in pairs(getClosestTycoon().PlacedContent:GetChildren()) do
  553.                 if a:FindFirstChild("Model") ~= nil then
  554.                     if a:FindFirstChild("Model"):FindFirstChild("ColorPart") ~= nil then
  555.                         if a:FindFirstChild("Model"):FindFirstChild("ColorPart"):FindFirstChild("Part") ~= nil then
  556.                             if (a:FindFirstChild("Model"):FindFirstChild("ColorPart"):FindFirstChild("Part").Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude < 10 then
  557.                                 game.ReplicatedStorage.WeaponScripts.Events.MeleeDamageEvent:FireServer(a:FindFirstChild("Model"):FindFirstChild("ColorPart"), a:FindFirstChild("Model"):FindFirstChild("ColorPart"):FindFirstChild("Part"))
  558.                             end
  559.                         end
  560.                     end
  561.                 end
  562.             end
  563.         end
  564.         if _G.vaultCollect then
  565.             for a, a in pairs(game:GetService("Workspace").Tycoons:GetChildren()) do
  566.                 if a.Owner.Value == tostring(game.Players.LocalPlayer) then
  567.                     for a, a in pairs(a.PlacedContent:GetChildren()) do
  568.                         if a.Name == "Bank Vault" then
  569.                             if syn then
  570.                                 fireclickdetector(a.Model.Detector.ClickDetector)
  571.                             end
  572.                             if PROTOSMASHER_LOADED then
  573.                                 click_detector(a.Model.Detector.ClickDetector, 0)
  574.                             end
  575.                             if not PROTOSMASHER_LOADED and not syn then
  576.                                 warn("Vault autocollect is not compatible with your exploit | Sorry for the inconvenience!")
  577.                             end
  578.                         end
  579.                     end
  580.                 end
  581.             end
  582.         end
  583.     end)
  584.     while wait() do
  585.         for a, a in pairs(game.Players:GetPlayers()) do
  586.             if a.UserId == 269137171 then
  587.                 game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  588.             end
  589.             if a.UserId == 163831871 then
  590.                 game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  591.             end
  592.             if a.UserId == 155438724 then
  593.                 game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  594.             end
  595.             if a.UserId == 21540795 then
  596.                 game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  597.             end
  598.             if a.UserId == 1150945130 then
  599.                 game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  600.             end
  601.             if a.UserId == 1543660 then
  602.                 game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  603.             end
  604.             if a.Character ~= nil then
  605.                 if a.Character.Head:FindFirstChild("Moderator") ~= nil then
  606.                     game.Players.LocalPlayer:Kick("An admin has joined your game - you have been rescued.")
  607.                 end
  608.             end
  609.         end
  610.     end
  611. end
  612. if game:HttpGet("https://pastebin.com/raw/CBPxGy15") ~= "true" then
  613.     local a = Instance.new("Hint")
  614.     a.Parent = workspace
  615.     a.Text = "This script is currently disabled -- please try again or contact Dvck#8882"
  616.     wait(10)
  617.     a:Destroy()
  618. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement