Advertisement
Honansik

Slap Battles GUI Script [Kill Aura/Anti Ragdoll/Anti TimeStop]

Dec 18th, 2021
52,786
2
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 31.65 KB | None | 2 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  2. local w = library:CreateWindow("by Thwartedbrute#5028 & dizy#5334")
  3.  
  4. local tab1 = w:CreateFolder("Combat")
  5. local tab2 = w:CreateFolder("Visuals")
  6. local tab3 = w:CreateFolder("Misc")
  7.  
  8. local LocalPlayer = game:GetService("Players").LocalPlayer;
  9. local debounce = false;
  10. local ragdoll_debounce = false;
  11. local ragdoll_debounce_1 = 0;
  12.  
  13. _G.InfTimestop = false;
  14. _G.PickUpGifts = false;
  15. _G.GiftsEsp = false;
  16. _G.GColor = Color3.fromRGB(111, 255, 0);
  17. _G.HandleEsp = false;
  18. _G.HColor = Color3.fromRGB(0, 166, 255);
  19. _G.SizeOverride = false;
  20. _G.PreventRagdoll = false;
  21. _G.AntiChase = false;
  22. _G.SpamRadio = false;
  23. _G.RemoveColorCorrection = false;
  24. _G.KillAura = false;
  25. _G.KADelay = nil;
  26. _G.AntiTimestop = false;
  27. _G.AdminNotifier = false;
  28.  
  29. tab1:Toggle("Killaura",function(bool)
  30.     shared.toggle = bool;
  31.     _G.KillAura = bool;
  32. end)
  33.  
  34. tab1:Slider("Hit Delay",{
  35.     min = 0;
  36.     max = 5;
  37.     precise = true;
  38. },function(value)
  39.     _G.KADelay = value;
  40. end)
  41.  
  42. tab1:Toggle("Loop Timestop",function(bool)
  43.     shared.toggle = bool;
  44.     _G.InfTimestop = bool;
  45. end)
  46.  
  47. tab1:Toggle("Anti Ragdoll",function(bool)
  48.     shared.toggle = bool;
  49.     _G.PreventRagdoll = bool;
  50. end)
  51.  
  52. tab1:Toggle("Anti Chase",function(bool)
  53.     shared.toggle = bool;
  54.     _G.AntiChase = bool;
  55. end)
  56.  
  57. tab1:Toggle("Anti Timestop",function(bool)
  58.     shared.toggle = bool;
  59.     _G.AntiTimestop = bool;
  60. end)
  61.  
  62. tab1:Toggle("Glove Reach",function(bool)
  63.     shared.toggle = bool;
  64.     _G.SizeOverride = bool;
  65. end)
  66.  
  67. tab2:Toggle("Gifts ESP",function(bool)
  68.     shared.toggle = bool;
  69.     _G.GiftsEsp = bool;
  70. end)
  71.  
  72. tab2:ColorPicker("Gift Color",_G.GColor,function(color) --Default color
  73.     _G.GColor = color;
  74. end)
  75.  
  76. tab2:Toggle("Reach ESP",function(bool)
  77.     shared.toggle = bool;
  78.     _G.HandleEsp = bool;
  79. end)
  80.  
  81. tab2:ColorPicker("Reach Color",_G.HColor,function(color) --Default color
  82.     _G.HColor = color;
  83. end)
  84.  
  85. tab2:Toggle("Hide Visuals",function(bool)
  86.     shared.toggle = bool;
  87.     _G.RemoveColorCorrection = bool;
  88. end)
  89.  
  90. tab2:Toggle("Leave on Admin's join",function(bool)
  91.     shared.toggle = bool;
  92.     _G.AdminNotifier = bool;
  93. end)
  94.  
  95. tab3:Toggle("Pick Up Gifts",function(bool)
  96.     shared.toggle = bool;
  97.     _G.PickUpGifts = bool;
  98. end)
  99.  
  100. tab3:Toggle("Spam Radio",function(bool)
  101.     shared.toggle = bool;
  102.     _G.SpamRadio = bool;
  103. end)
  104.  
  105. tab3:Bind("Force Timestop",Enum.KeyCode.X,function()
  106.     game:GetService("ReplicatedStorage").TimestopJump:FireServer();
  107.     game:GetService("ReplicatedStorage").Timestopchoir:FireServer();
  108.     game:GetService("ReplicatedStorage").Timestop:FireServer();
  109. end)
  110.  
  111. tab3:Bind("Force Invisibility",Enum.KeyCode.Z,function()
  112.     game:GetService("ReplicatedStorage").Ghostinvisibilitydeactivated:FireServer();
  113.     game:GetService("ReplicatedStorage").Ghostinvisibilityactivated:FireServer();
  114. end)
  115.  
  116. tab3:Bind("Force Mail",Enum.KeyCode.E,function()
  117.     game:GetService("ReplicatedStorage").MailSend:FireServer();
  118. end)
  119.  
  120. tab3:Button("Duck Badge",function()
  121.     fireclickdetector(game:GetService("Workspace")["Arena"]["default island"]["Rubber Ducky"].ClickDetector);
  122. end)
  123.  
  124. tab3:Button("Court Evidence Badge", function()
  125.     fireclickdetector(game:GetService("Workspace")["Lobby"]["Scene"]["knofe"].ClickDetector);
  126. end)
  127.  
  128. tab3:Button("Brazil Badge", function()
  129.     firetouchinterest(game:GetService("Workspace")["Lobby"]["brazil"]["portal"]);
  130. end)
  131.  
  132. tab3:Button("Obama Glove Badge", function()
  133.     fireclickdetector(game:GetService("Workspace")["Lobby"]["Obama"].ClickDetector);
  134. end)
  135.  
  136. tab3:Button("TP to Arena", function()
  137.     LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(38, 0, 60);
  138. end)
  139.  
  140. tab3:Button("TP to Lobby", function()
  141.     LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(-339.448792, 324.929474, -1.96081245);
  142. end)
  143.  
  144. game:GetService("RunService").Heartbeat:Connect(function()
  145.     spawn(function()
  146.         if _G.InfTimestop then
  147.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 then
  148.                 if LocalPlayer.Character.isInArena.Value == true and game:GetService("Workspace"):FindFirstChild("universaltimestop") == nil then
  149.                     game:GetService("ReplicatedStorage").TimestopJump:FireServer();
  150.                     game:GetService("ReplicatedStorage").Timestopchoir:FireServer();
  151.                     game:GetService("ReplicatedStorage").Timestop:FireServer();
  152.                 end
  153.             end
  154.         end
  155.     end)
  156.  
  157.     spawn(function()
  158.         if _G.HandleEsp then
  159.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  160.                 for _,v in pairs(LocalPlayer.Character:GetChildren()) do
  161.                     if v:IsA("Tool") and v.Name ~= "Radio" then
  162.                         if v:FindFirstChild("Glove") ~= nil then
  163.                             if not v:FindFirstChildOfClass("BoxHandleAdornment") then
  164.                                 local box = Instance.new("BoxHandleAdornment", v);
  165.                                 box.Adornee = v:FindFirstChild("Glove");
  166.                                 box.Size = v:FindFirstChild("Glove").Size;
  167.                                 box.AlwaysOnTop = true;
  168.                                 box.Transparency = 0.7;
  169.                                 box.Color3 = _G.HColor;
  170.                             elseif v:FindFirstChildOfClass("BoxHandleAdornment") ~= nil then
  171.                                 if v:FindFirstChildOfClass("BoxHandleAdornment").Size ~= v:FindFirstChild("Glove").Size then
  172.                                     v:FindFirstChildOfClass("BoxHandleAdornment"):Destroy();
  173.                                 end
  174.                             end
  175.                         end
  176.                     end
  177.                 end
  178.             end
  179.         elseif not _G.HandleEsp then
  180.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  181.                 for _,v in pairs(LocalPlayer.Character:GetChildren()) do
  182.                     if v:IsA("Tool") and v.Name ~= "Radio" then
  183.                         if v:FindFirstChild("Glove") ~= nil then
  184.                             if v:FindFirstChildOfClass("BoxHandleAdornment") ~= nil then
  185.                                 v:FindFirstChildOfClass("BoxHandleAdornment"):Destroy();
  186.                             end
  187.                         end
  188.                     end
  189.                 end
  190.             end
  191.         end
  192.     end)
  193.  
  194.     spawn(function()
  195.         if _G.SizeOverride then
  196.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  197.                 for _,v in pairs(LocalPlayer.Character:GetChildren()) do
  198.                     if v:IsA("Tool") and v.Name ~= "Radio" then
  199.                         if v:FindFirstChild("Glove") ~= nil then
  200.                             if v:FindFirstChild("Glove"):FindFirstChildOfClass("Texture") then v:FindFirstChild("Glove"):FindFirstChildOfClass("Texture"):Destroy() end
  201.                             v:FindFirstChild("Glove").Size = Vector3.new(50.5, 30.5, 30.7);
  202.                             v:FindFirstChild("Glove").Transparency = 1;
  203.                         end
  204.                     end
  205.                 end
  206.             end
  207.         end
  208.     end)
  209.  
  210.     pcall(function()
  211.         if _G.PreventRagdoll then
  212.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  213.                 if LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand == true then LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false; end
  214.                 if LocalPlayer.Character:WaitForChild("Ragdolled") ~= nil then
  215.                     if LocalPlayer.Character:WaitForChild("Ragdolled").Value == false then hum_cframe = LocalPlayer.Character:FindFirstChild("Torso").CFrame; end
  216.                     if ragdoll_debounce == true then if ragdoll_debounce_1 < 6 then LocalPlayer.Character:FindFirstChild("Torso").CFrame = hum_cframe; ragdoll_debounce = false; elseif ragdoll_debounce_1 == 6 then ragdoll_debounce_1 = 0; ragdoll_debounce = false; end end
  217.                     if LocalPlayer.Character:WaitForChild("Ragdolled").Value == true then
  218.                         LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false;
  219.                         LocalPlayer.Character:FindFirstChild("Head").Anchored = true;
  220.                         LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Anchored = true;
  221.                         LocalPlayer.Character:FindFirstChild("Torso").Anchored = true;
  222.                         --LocalPlayer.Character:FindFirstChild("Torso").CFrame = hum_cframe;
  223.                         ragdoll_debounce = true;
  224.                         for _,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  225.                             if v.Name == "Head" or v.Name == "Torso" or v.Name == "Left Arm" or v.Name == "Right Arm" or v.Name == "Left Leg" or v.Name == "Right Leg" or v.Name == "HumanoidRootPart" or v.Name == "Torso" then
  226.                                 for _,r in pairs(v:GetChildren()) do
  227.                                     if r:IsA("BallSocketConstrait") or r:IsA("BodyVelocity") or r:IsA("BodyAngularVelocity") then
  228.                                         r:Destroy();
  229.                                     elseif r:IsA("Attachment") then
  230.                                         if r.Name == "a0" or r.Name == "a1" or r.Name == "torsoweld" then
  231.                                             r:Destroy();
  232.                                         end
  233.                                     end
  234.                                 end
  235.                             elseif string.sub(v.Name, 0, 8) == "FakePart" then
  236.                                 v.Anchored = true;
  237.                                 v.CanCollide = false;
  238.                             elseif v.Name == "Icecube" then
  239.                                 LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false;
  240.                                 v:Destroy();
  241.                             end
  242.                         end
  243.                     elseif LocalPlayer.Character:WaitForChild("Ragdolled").Value == false then
  244.                         LocalPlayer.Character:FindFirstChild("Head").Anchored = false;
  245.                         LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Anchored = false;
  246.                         LocalPlayer.Character:FindFirstChild("Torso").Anchored = false;
  247.                     end
  248.                 end
  249.             end
  250.         end
  251.     end)
  252.  
  253.     spawn(function()
  254.         if _G.SpamRadio then
  255.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  256.                 if LocalPlayer.Backpack:FindFirstChild("Radio") ~= nil then
  257.                     LocalPlayer.Backpack:FindFirstChild("Radio")["Handle"]["Sound"]["ID"].Value = 5361902748;
  258.                     LocalPlayer.Backpack:FindFirstChild("Radio").Parent = LocalPlayer.Character;
  259.                 elseif LocalPlayer.Character:FindFirstChild("Radio") ~= nil then
  260.                     LocalPlayer.Character:FindFirstChild("Radio")["Handle"]["Sound"]["ID"].Value = 5361902748;
  261.                     LocalPlayer.Character:FindFirstChild("Radio"):Activate();
  262.                     LocalPlayer.Character:FindFirstChild("Radio").Parent = LocalPlayer.Backpack;
  263.                 end
  264.             end
  265.         end
  266.     end)
  267.  
  268.     spawn(function()
  269.         if _G.AntiChase then
  270.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  271.                 if LocalPlayer.Character:FindFirstChild("CHASED") or LocalPlayer.Character:FindFirstChild("CHASE")  then
  272.                     for _,v in pairs(LocalPlayer.Character:GetChildren()) do
  273.                         if v:IsA("Part") or v:IsA("MeshPart") then
  274.                             v.Anchored = false;
  275.                         elseif v:IsA("BoolValue") and v.Name == "Ragdolled" then
  276.                             v.Value = false;
  277.                         end
  278.                     end
  279.                 end
  280.             end
  281.         end
  282.     end)
  283.  
  284.     pcall(function()
  285.         if _G.AntiTimestop then
  286.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character:WaitForChild("Torso").Transparency == 0 then
  287.                 if game:GetService("Workspace"):FindFirstChild("universaltimestop") ~= nil then
  288.                     LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false;
  289.                     LocalPlayer.Character:FindFirstChild("TSVulnerability").Value = false;
  290.                     for _,v in pairs(LocalPlayer.Character:GetChildren()) do
  291.                         if v:IsA("MeshPart") or v:IsA("Part") then
  292.                             v.Anchored = false;
  293.                         end
  294.                     end
  295.                 elseif not game:GetService("Workspace"):FindFirstChild("universaltimestop") then
  296.                     LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false;
  297.                     LocalPlayer.Character:FindFirstChild("TSVulnerability").Value = true;
  298.                 end
  299.             end
  300.         end
  301.     end)
  302.  
  303.     spawn(function()
  304.         if _G.RemoveColorCorrection then
  305.             if game:GetService("Lighting"):FindFirstChildOfClass("ColorCorrectionEffect") then
  306.                 game:GetService("Lighting"):FindFirstChildOfClass("ColorCorrectionEffect"):Destroy();
  307.             end
  308.                
  309.             for _,v in pairs(LocalPlayer.PlayerGui:GetChildren()) do
  310.                 if v.Name == "VineThudImageScreenGUI" or v.Name == "MailPopup" or v.Name == "MittenBlind" then
  311.                     v:Destroy();
  312.                 end
  313.             end
  314.  
  315.             for _,p in pairs(game:GetService("Workspace"):GetChildren()) do
  316.                 if p.Name == "wall" or p.Name == "BusModel" then
  317.                     p.CanCollide = false;
  318.                     p.CanTouch = false;
  319.                     p.Transparency = 0.8;
  320.                 end
  321.             end
  322.                    
  323.             for _,v in pairs(game:GetService("Players"):GetChildren()) do
  324.                 if v.Character:FindFirstChild("rock") then
  325.                     v.Character:FindFirstChild("rock").CanTouch = false;
  326.                     v.Character:FindFirstChild("rock").CanCollide = false;
  327.                 end
  328.             end
  329.         end
  330.     end)
  331.  
  332.     pcall(function()
  333.         if _G.KillAura then
  334.             for _,v in pairs(game:GetService("Players"):GetChildren()) do
  335.                 if v.Name ~= LocalPlayer.Name then
  336.                     if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChild("Humanoid") ~= nil and LocalPlayer.Character:FindFirstChild("Humanoid").Health > 0 and not debounce and LocalPlayer.Character.isInArena ~= nil and LocalPlayer.Character.isInArena.Value == true then
  337.                         if v.Character ~= nil and v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("Humanoid").Health > 0 and v.Character:FindFirstChild("HumanoidRootPart") ~= nil and v.Character:FindFirstChild("Torso").Transparency == 0 and v.Character:FindFirstChild("rock") == nil then
  338.                             if (LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position-v.Character:FindFirstChild("HumanoidRootPart").Position).Magnitude < 30 then
  339.                                 if LocalPlayer.Character:FindFirstChild("Diamond") then
  340.                                     LocalPlayer.Character:FindFirstChild("Diamond"):Activate();
  341.                                     game:GetService("ReplicatedStorage").DiamondHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  342.                                 elseif LocalPlayer.Character:FindFirstChild("Extended") then
  343.                                     LocalPlayer.Character:FindFirstChild("Extended"):Activate();
  344.                                     game:GetService("ReplicatedStorage").ExtendedHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  345.                                 elseif LocalPlayer.Character:FindFirstChild("Brick") then
  346.                                     LocalPlayer.Character:FindFirstChild("Brick"):Activate();
  347.                                     game:GetService("ReplicatedStorage").BrickHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  348.                                 elseif LocalPlayer.Character:FindFirstChild("Snow") then
  349.                                     LocalPlayer.Character:FindFirstChild("Snow"):Activate();
  350.                                     game:GetService("ReplicatedStorage").SnowHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  351.                                 elseif LocalPlayer.Character:FindFirstChild("Flash") then
  352.                                     LocalPlayer.Character:FindFirstChild("Flash"):Activate();
  353.                                     game:GetService("ReplicatedStorage").FlashHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  354.                                 elseif LocalPlayer.Character:FindFirstChild("Swapper") then
  355.                                     LocalPlayer.Character:FindFirstChild("Swapper"):Activate();
  356.                                     game:GetService("ReplicatedStorage").SwapperHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  357.                                 elseif LocalPlayer.Character:FindFirstChild("Bull") then
  358.                                     LocalPlayer.Character:FindFirstChild("Bull"):Activate();
  359.                                     game:GetService("ReplicatedStorage").BullHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  360.                                 elseif LocalPlayer.Character:FindFirstChild("Dice") then
  361.                                     LocalPlayer.Character:FindFirstChild("Dice"):Activate();
  362.                                     game:GetService("ReplicatedStorage").DiceHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  363.                                 elseif LocalPlayer.Character:FindFirstChild("Ghost") then
  364.                                     LocalPlayer.Character:FindFirstChild("Ghost"):Activate();
  365.                                     game:GetService("ReplicatedStorage").GhostHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  366.                                 elseif LocalPlayer.Character:FindFirstChild("Thanos") then
  367.                                     LocalPlayer.Character:FindFirstChild("Thanos"):Activate();
  368.                                     game:GetService("ReplicatedStorage").ThanosHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  369.                                 elseif LocalPlayer.Character:FindFirstChild("Stun") then
  370.                                     LocalPlayer.Character:FindFirstChild("Stun"):Activate();
  371.                                     game:GetService("ReplicatedStorage").HtStun:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  372.                                 elseif LocalPlayer.Character:FindFirstChild("「ZA HANDO」") then
  373.                                     LocalPlayer.Character:FindFirstChild("「ZA HANDO」"):Activate();
  374.                                     game:GetService("ReplicatedStorage").zhramt:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  375.                                 elseif LocalPlayer.Character:FindFirstChild("Pusher") then
  376.                                     LocalPlayer.Character:FindFirstChild("Pusher"):Activate();
  377.                                     game:GetService("ReplicatedStorage").PusherHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  378.                                 elseif LocalPlayer.Character:FindFirstChild("Space") then
  379.                                     LocalPlayer.Character:FindFirstChild("Space"):Activate();
  380.                                     game:GetService("ReplicatedStorage").HtSpace:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  381.                                 elseif LocalPlayer.Character:FindFirstChild("Dream") then
  382.                                     LocalPlayer.Character:FindFirstChild("Dream"):Activate();
  383.                                     game:GetService("ReplicatedStorage").Dreamhit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  384.                                 elseif LocalPlayer.Character:FindFirstChild("Mail") then
  385.                                     LocalPlayer.Character:FindFirstChild("Mail"):Activate();
  386.                                     game:GetService("ReplicatedStorage").MailHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  387.                                 elseif LocalPlayer.Character:FindFirstChild("Golden") then
  388.                                     LocalPlayer.Character:FindFirstChild("Golden"):Activate();
  389.                                     game:GetService("ReplicatedStorage").GoldenHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  390.                                 elseif LocalPlayer.Character:FindFirstChild("Cheeky") then
  391.                                     LocalPlayer.Character:FindFirstChild("Cheeky"):Activate();
  392.                                     game:GetService("ReplicatedStorage").CheekyHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  393.                                 elseif LocalPlayer.Character:FindFirstChild("Reaper") then
  394.                                     LocalPlayer.Character:FindFirstChild("Reaper"):Activate();
  395.                                     game:GetService("ReplicatedStorage").ReaperHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  396.                                 elseif LocalPlayer.Character:FindFirstChild("Replica") then
  397.                                     LocalPlayer.Character:FindFirstChild("Replica"):Activate();
  398.                                     game:GetService("ReplicatedStorage").ReplicaHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  399.                                 elseif LocalPlayer.Character:FindFirstChild("Defense") then
  400.                                     LocalPlayer.Character:FindFirstChild("Defense"):Activate();
  401.                                     game:GetService("ReplicatedStorage").DefenseHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  402.                                 elseif LocalPlayer.Character:FindFirstChild("Killstreak") then
  403.                                     local kills = string.sub(LocalPlayer.PlayerGui:FindFirstChild("Kills"):FindFirstChildOfClass("TextLabel").Text, 0, 7);
  404.                                     LocalPlayer.Character:FindFirstChild("Killstreak"):Activate();
  405.                                     game:GetService("ReplicatedStorage").KSHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"], kills);
  406.                                 elseif LocalPlayer.Character:FindFirstChild("Reverse") then
  407.                                     LocalPlayer.Character:FindFirstChild("Reverse"):Activate();
  408.                                     game:GetService("ReplicatedStorage").ReverseHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  409.                                 elseif LocalPlayer.Character:FindFirstChild("Shukuchi") then
  410.                                     LocalPlayer.Character:FindFirstChild("Shukuchi"):Activate();
  411.                                     game:GetService("ReplicatedStorage").ShukuchiHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  412.                                 elseif LocalPlayer.Character:FindFirstChild("Duelist") then
  413.                                     LocalPlayer.Character:FindFirstChild("Duelist"):Activate();
  414.                                     game:GetService("ReplicatedStorage").DuelistHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  415.                                 elseif LocalPlayer.Character:FindFirstChild("woah") then
  416.                                     LocalPlayer.Character:FindFirstChild("woah"):Activate();
  417.                                     game:GetService("ReplicatedStorage").woahHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  418.                                 elseif LocalPlayer.Character:FindFirstChild("Ice") then
  419.                                     LocalPlayer.Character:FindFirstChild("Ice"):Activate();
  420.                                     game:GetService("ReplicatedStorage").IceHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  421.                                 elseif LocalPlayer.Character:FindFirstChild("Adios") then
  422.                                     LocalPlayer.Character:FindFirstChild("Adios"):Activate();
  423.                                     game:GetService("ReplicatedStorage").hitAdios:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  424.                                 elseif LocalPlayer.Character:FindFirstChild("God's Hand") then
  425.                                     LocalPlayer.Character:FindFirstChild("God's Hand"):Activate();
  426.                                     game:GetService("ReplicatedStorage").Godshand:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  427.                                 elseif LocalPlayer.Character:FindFirstChild("OVERKILL") then
  428.                                     LocalPlayer.Character:FindFirstChild("OVERKILL"):Activate();
  429.                                     game:GetService("ReplicatedStorage").Overkillhit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  430.                                 elseif LocalPlayer.Character:FindFirstChild("Acrobat") then
  431.                                     LocalPlayer.Character:FindFirstChild("Acrobat"):Activate();
  432.                                     game:GetService("ReplicatedStorage").AcHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  433.                                 elseif LocalPlayer.Character:FindFirstChild("MEGAROCK") then
  434.                                     LocalPlayer.Character:FindFirstChild("MEGAROCK"):Activate();
  435.                                     game:GetService("ReplicatedStorage").DiamondHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  436.                                 elseif LocalPlayer.Character:FindFirstChild("Plague") then
  437.                                     LocalPlayer.Character:FindFirstChild("Plague"):Activate();
  438.                                     game:GetService("ReplicatedStorage").PlagueHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  439.                                 elseif LocalPlayer.Character:FindFirstChild("Hallow Jack") then
  440.                                     LocalPlayer.Character:FindFirstChild("Hallow Jack"):Activate();
  441.                                     game:GetService("ReplicatedStorage").HallowHIT:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  442.                                 elseif LocalPlayer.Character:FindFirstChild("[REDACTED]") then
  443.                                     LocalPlayer.Character:FindFirstChild("[REDACTED]"):Activate();
  444.                                     game:GetService("ReplicatedStorage").ReHit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  445.                                 elseif LocalPlayer.Character:FindFirstChild("bus") then
  446.                                     LocalPlayer.Character:FindFirstChild("bus"):Activate();
  447.                                     game:GetService("ReplicatedStorage").hitbus:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  448.                                 elseif LocalPlayer.Character:FindFirstChild("obama") then
  449.                                     LocalPlayer.Character:FindFirstChild("obama"):Activate();
  450.                                     game:GetService("ReplicatedStorage").Obamahit:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  451.                                 end
  452.                                 debounce = true;
  453.                                 delay(_G.KADelay, function()
  454.                                     debounce = false;
  455.                                 end)
  456.                             elseif (LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position-v.Character:FindFirstChild("HumanoidRootPart").Position).Magnitude < 10 then
  457.                                 if LocalPlayer.Character:FindFirstChild("Default") then
  458.                                     LocalPlayer.Character:FindFirstChild("Default"):Activate();
  459.                                     game:GetService("ReplicatedStorage").b:FireServer(game:GetService("Workspace")[v.Name]["Right Arm"]);
  460.                                 end
  461.                                 debounce = true;
  462.                                 delay(_G.KADelay, function()
  463.                                     debounce = false;
  464.                                 end)
  465.                             end
  466.                         end
  467.                     end
  468.                 end
  469.             end
  470.         else
  471.             if debounce then debounce = false; end
  472.         end
  473.     end)
  474.  
  475.     pcall(function()
  476.         if _G.PickUpGifts then
  477.             if LocalPlayer.Character ~= nil and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") ~= nil and LocalPlayer.Character:WaitForChild("Humanoid").Health > 0 and LocalPlayer.Character.isInArena ~= nil and LocalPlayer.Character.isInArena.Value == true then
  478.                 for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  479.                     if v.Name == "Gift" and v.Transparency == 0 then
  480.                         --firetouchinterest(LocalPlayer.Character:FindFirstChild("HumanoidRootPart"), v);
  481.                         LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = v.CFrame;
  482.                     end
  483.                 end
  484.             end
  485.         end
  486.     end)
  487.  
  488.     spawn(function()
  489.         if _G.GiftsEsp then
  490.             if LocalPlayer.Character ~= nil then
  491.                 for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  492.                     if v.Name == "Gift" and v:FindFirstChildOfClass("BoxHandleAdornment") == nil then
  493.                         local box = Instance.new("BoxHandleAdornment", v);
  494.                         box.Adornee = v;
  495.                         box.Size = v.Size;
  496.                         box.AlwaysOnTop = true;
  497.                         box.Transparency = 0.6;
  498.                         box.Color3 = _G.GColor;
  499.                     end
  500.                 end
  501.             end
  502.         end
  503.     end)
  504.        
  505.     pcall(function()
  506.         if _G.AdminNotifier then
  507.             if game:GetService("Players"):FindFirstChild("PimGameFreak") or game:GetService("Players"):FindFirstChild("buffwagon") or game:GetService("Players"):FindFirstChild("Astronaxtic") or game:GetService("Players"):FindFirstChild("Villadyne") or ame:GetService("Players"):FindFirstChild("undeadtaIIie") then
  508.                 LocalPlayer:Kick(" [dizy's script] Admin joined! Join on other server. ")
  509.             end
  510.         end
  511.     end)
  512. end)
  513.  
  514. Player = game.Players.LocalPlayer.Character.Name
  515.  
  516. workspace[Player].isInArena:Destroy()
  517. wait()
  518. workspace[Player].IsInDefaultArena:Destroy()
  519. wait()
  520. workspace[Player].Ragdolled:Destroy()
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement