Advertisement
Freshbloodb

Jajwbg618hsb1

Apr 21st, 2023
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 85.59 KB | Software | 0 0
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/NougatBitz/Femware-Leak/main/ESP.lua"))()
  2.  
  3. getgenv().Aimbot = {
  4.     Enabled = false,
  5.     Smoothness = 0.005,
  6.     Smoothing = false,
  7.     AirshotFunc = false,
  8.     AirshotPart = "RightFoot",
  9.     AimPart = "HumanoidRootPart",
  10.     Predicting = 0.165,
  11.     Key = Enum.KeyCode.Q,
  12.     Toggled
  13. }
  14.  
  15.  
  16. function x(tt,tx,cc)
  17.     game.StarterGui:SetCore("SendNotification", {
  18.         Title = tt;
  19.         Text = tx;
  20.         Duration = cc;
  21.         Icon = "rbxthumb://type=Asset&id=7262533709&w=150&h=150";
  22.     })
  23. end
  24.  
  25. local CurrentCamera = game:GetService("Workspace").CurrentCamera
  26. local RunService = game:GetService("RunService")
  27. local Mouse = game.Players.LocalPlayer:GetMouse()
  28. local LocalPlayer = game.Players.LocalPlayer
  29. local Plr
  30.  
  31. function FindClosestPlayer()
  32.     local ClosestDistance, ClosestPlayer = math.huge, nil;
  33.     for _, Player in next, game:GetService("Players"):GetPlayers() do
  34.         local ISNTKNOCKED = Player.Character:WaitForChild("BodyEffects")["K.O"].Value ~= true
  35.         local ISNTGRABBED = Player.Character:FindFirstChild("GRABBING_COINSTRAINT") == nil
  36.  
  37.         if Player ~= LocalPlayer then
  38.             local Character = Player.Character
  39.             if Character and Character.Humanoid.Health > 1 and ISNTKNOCKED and ISNTGRABBED then
  40.                 local Position, IsVisibleOnViewPort = CurrentCamera:WorldToViewportPoint(Character.HumanoidRootPart
  41.                                                                                              .Position)
  42.                 if IsVisibleOnViewPort then
  43.                     local Distance = (Vector2.new(Mouse.X, Mouse.Y) - Vector2.new(Position.X, Position.Y)).Magnitude
  44.                     if Distance < ClosestDistance then
  45.                         ClosestPlayer = Player
  46.                         ClosestDistance = Distance
  47.                     end
  48.                 end
  49.             end
  50.         end
  51.     end
  52.     return ClosestPlayer, ClosestDistance
  53. end
  54.  
  55.  
  56.  
  57.     game:GetService("UserInputService").InputBegan:Connect(function(keygo)
  58.            if (keygo.KeyCode == getgenv().Aimbot.Key) then
  59.                Toggled = not Toggled
  60.                if Toggled then
  61.                Plr =  FindClosestPlayer()
  62. end
  63.          end
  64.            
  65. end)
  66. game:GetService("RunService").RenderStepped:Connect(function()
  67. if getgenv().Aimbot.Smoothing and getgenv().Aimbot.Enabled and Toggled == true then
  68.     local Main = CFrame.new(workspace.CurrentCamera.CFrame.p, Plr.Character[getgenv().Aimbot.AimPart].Position + Plr.Character[getgenv().Aimbot.AimPart].Velocity*getgenv().Aimbot.Predicting/10)
  69.                                  workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame:Lerp(Main, getgenv().Aimbot.Smoothness, Enum.EasingStyle.Elastic, Enum.EasingDirection.InOut)
  70.                             elseif getgenv().Aimbot.Smoothing == false and getgenv().Aimbot.Enabled and Toggled == true then
  71.     workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, Plr.Character[getgenv().Aimbot.AimPart].Position + Plr.Character[getgenv().Aimbot.AimPart].Velocity*getgenv().Aimbot.Predicting)
  72.                             end
  73.  
  74. end)
  75.  
  76. if getgenv().Aimbot.AirshotFunc == true then
  77.    
  78.                 if Plr.Character.Humanoid.Jump == true and Plr.Character.Humanoid.FloorMaterial == Enum.Material.Air then
  79.                     getgenv().Aimbot.AimPart = getgenv().Aimbot.AirshotPart
  80.                 else
  81.                     Plr.Character:WaitForChild("Humanoid").StateChanged:Connect(function(old,new)
  82.                         if new == Enum.HumanoidStateType.Freefall then
  83.                         getgenv().Aimbot.AimPart = getgenv().Aimbot.AirshotPart
  84.                         else
  85.                             getgenv().Aimbot.AimPart = getgenv().Aimbot.AimPart
  86.                         end
  87.                     end)
  88.                 end
  89.             end
  90.  
  91.  
  92. local Config = {
  93.     WindowName = "Mars.cc Rewrite",
  94.     Color = Color3.fromRGB(255,0,222),
  95.     Keybind = Enum.KeyCode.RightBracket
  96. }
  97.  
  98. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/AlexR32/Roblox/main/BracketV3.lua"))()
  99. local Window = Library:CreateWindow(Config, game:GetService("CoreGui"))
  100.  
  101. local Tab1 = Window:CreateTab("Main")
  102. local Misc = Window:CreateTab("Misc")
  103. local Visuals = Window:CreateTab("Visuals")
  104. local AutoBuys = Window:CreateTab("Autobuy/TP")
  105. local Universal = Window:CreateTab("Universal")
  106. local Tab2 = Window:CreateTab("UI Settings")
  107. local Section1 = Tab1:CreateSection("Blatant")
  108. local Section2 = Tab1:CreateSection("Legit")
  109. local Misc1 = Misc:CreateSection("Misc")
  110. local Fun = Misc:CreateSection("Fun Stuff")
  111. local me = Visuals:CreateSection("Characteristics")
  112. local ESP = Visuals:CreateSection("ESP")
  113. local TP = AutoBuys:CreateSection("Teleportations")
  114. local Autobuy = AutoBuys:CreateSection("Autobuys")
  115. local Section3 = Tab2:CreateSection("Menu")
  116. local Section4 = Tab2:CreateSection("Background")
  117.  
  118.  
  119. local Button1 = Section1:CreateButton("Enable", function(State)
  120.  
  121. getgenv().Target = true
  122. -- Configuration
  123.     getgenv().Key = Enum.KeyCode.Q
  124. getgenv().Prediction = 0.12654321
  125. getgenv().ChatMode = false
  126. getgenv().NotifMode = false
  127.     getgenv().PartMode = true
  128.     getgenv().AirshotFunccc = false
  129.     getgenv().Partz = "HumanoidRootPart"
  130.     --
  131.     _G.Types = {
  132.         Ball = Enum.PartType.Ball,
  133.         Block = Enum.PartType.Block,
  134.         Cylinder = Enum.PartType.Cylinder
  135.     }
  136.    
  137.     --variables                
  138.         local Tracer = Instance.new("Part", game.Workspace)
  139.     Tracer.Name = "gay"
  140.     Tracer.Anchored = true     
  141.     Tracer.CanCollide = false
  142.     Tracer.Transparency = 0.8
  143.     Tracer.Parent = game.Workspace 
  144.     Tracer.Shape = _G.Types.Block
  145.     Tracer.Size = Vector3.new(6,6,6)
  146.     Tracer.Color = Color3.fromRGB(128,128,128)
  147.    
  148.     --
  149.     local plr = game.Players.LocalPlayer
  150. local mouse = plr:GetMouse()
  151. local Runserv = game:GetService("RunService")
  152.  
  153. circle = Drawing.new("Circle")
  154. circle.Color = Color3.fromRGB(255,255,255)
  155. circle.Thickness = 0
  156. circle.NumSides = 732
  157. circle.Radius = 120
  158. circle.Thickness = 0
  159. circle.Transparency = 0.7
  160. circle.Visible = false
  161. circle.Filled = false
  162.  
  163. Runserv.RenderStepped:Connect(function()
  164.     circle.Position = Vector2.new(mouse.X,mouse.Y+35)
  165. end)
  166.    
  167.         local guimain = Instance.new("Folder", game.CoreGui)
  168.         local CC = game:GetService"Workspace".CurrentCamera
  169.     local LocalMouse = game.Players.LocalPlayer:GetMouse()
  170.         local Locking = false
  171.    
  172.        
  173.     --
  174.     if getgenv().valiansh == true then
  175.                         game.StarterGui:SetCore("SendNotification", {
  176.                    Title = "Mars.cc rewrite",
  177.                    Text = "Already Loaded!",
  178.                    Duration = 5
  179.        
  180.                    })
  181.         return
  182.     end
  183.    
  184.     getgenv().valiansh = true
  185.    
  186.         local UserInputService = game:GetService("UserInputService")
  187.  
  188.     UserInputService.InputBegan:Connect(function(keygo,ok)
  189.            if (not ok) then
  190.            if (keygo.KeyCode == getgenv().Key) then
  191.                if getgenv().Target == true then
  192.                Locking = not Locking
  193.                
  194.                if Locking then
  195.                Plr =  getClosestPlayerToCursor()
  196.                 if getgenv().ChatMode then
  197.         local A_1 = "Target: "..tostring(Plr.Character.Humanoid.DisplayName) local A_2 = "All" local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2)
  198.             end
  199.                if getgenv().NotifMode then
  200.                 game.StarterGui:SetCore("SendNotification", {
  201.         Title = "Mars.cc rewrite";
  202.         Text = "Target: "..tostring(Plr.Character.Humanoid.DisplayName);
  203.    
  204.     })
  205.     end
  206.     elseif not Locking then
  207.          if getgenv().ChatMode then
  208.         local A_1 = "Unlocked!" local A_2 = "All" local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2)
  209.             end
  210.         if getgenv().NotifMode then
  211.                         game.StarterGui:SetCore("SendNotification", {
  212.                    Title = "Mars.cc rewrite",
  213.                    Text = "Unlocked",
  214.                    Duration = 5
  215.                })
  216.            elseif getgenv().Target == false then
  217.                         game.StarterGui:SetCore("SendNotification", {
  218.                    Title = "Mars.cc rewrite",
  219.                    Text = "Target isn't enabled",
  220.                    Duration = 5
  221.      
  222.                    })
  223.                
  224.                end
  225.                  
  226.  
  227.  end     end  
  228. end
  229. end
  230. end)
  231.    
  232.     function getClosestPlayerToCursor()
  233.         local closestPlayer
  234.         local shortestDistance = circle.Radius
  235.  
  236.         for i, v in pairs(game.Players:GetPlayers()) do
  237.             if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health ~= 0 and v.Character:FindFirstChild("LowerTorso") then
  238.                 local pos = CC:WorldToViewportPoint(v.Character.PrimaryPart.Position)
  239.                 local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(LocalMouse.X, LocalMouse.Y)).magnitude
  240.                 if magnitude < shortestDistance then
  241.                     closestPlayer = v
  242.                     shortestDistance = magnitude
  243.                 end
  244.             end
  245.         end
  246.         return closestPlayer
  247.     end
  248. --
  249. if getgenv().PartMode then
  250.     game:GetService"RunService".Stepped:connect(function()
  251.         if Locking and Plr.Character and Plr.Character:FindFirstChild("LowerTorso") then
  252.             Tracer.CFrame = CFrame.new(Plr.Character.LowerTorso.Position+(Plr.Character.LowerTorso.Velocity*Prediction))
  253.         else
  254.             Tracer.CFrame = CFrame.new(0, 9999, 0)
  255.  
  256.         end
  257.     end)
  258. end
  259.  
  260.    
  261.    
  262.     --
  263.     local rawmetatable = getrawmetatable(game)
  264.     local old = rawmetatable.__namecall
  265.     setreadonly(rawmetatable, false)
  266.     rawmetatable.__namecall = newcclosure(function(...)
  267.         local args = {...}
  268.         if Locking and getnamecallmethod() == "FireServer" and args[2] == "UpdateMousePos" then
  269.             args[3] = Plr.Character[getgenv().Partz].Position+(Plr.Character[getgenv().Partz].Velocity*Prediction)
  270.             return old(unpack(args))
  271.         end
  272.         return old(...)
  273.     end)
  274.     if getgenv.AirshotFunccc then
  275.     if Plr.Character.Humanoid.Jump == true and Plr.Character.Humanoid.FloorMaterial == Enum.Material.Air then
  276.         getgenv().Partz = "RightFoot"
  277.     else
  278.         getgenv().Partz = "RightFoot"
  279.     end
  280. end
  281. end)
  282. Button1:AddToolTip("Enables Aimlock")
  283.  
  284. local TextBox1 = Section1:CreateTextBox("Prediction", "Enter Prediction", true, function(Value)
  285. getgenv().Prediction = Value
  286. end)
  287. TextBox1:AddToolTip("Changes Aimlock Prediction")
  288.  
  289. local Toggle1 = Section1:CreateToggle("Notifications", nil, function(State)
  290. getgenv().NotifMode = State
  291. end)
  292. Toggle1:AddToolTip("Enables Notifications")
  293.  
  294. local Toggle1 = Section1:CreateToggle("Airshot Function", nil, function(State)
  295. getgenv().AirshotFunccc = State
  296. end)
  297. Toggle1:AddToolTip("Enables Airshot Function")
  298.  
  299. local Toggle1 = Section1:CreateToggle("Chat Mode", nil, function(State)
  300. getgenv().ChatMode = State
  301. end)
  302. Toggle1:AddToolTip("Makes u chat enemys names")
  303.  
  304. local Dropdown1 = Section1:CreateDropdown("Aimpart", {"Head","UpperTorso","HumanoidRootPart", "LowerTorso"}, function(String)
  305.         getgenv().Partz = String
  306. end)
  307. Dropdown1:AddToolTip("Changes Aimpart of Aimlock")
  308. Dropdown1:SetOption("HumanoidRootPart")
  309.  
  310. local Toggle1 = Section1:CreateToggle("Enable FOV", nil, function(State)
  311. circle.Visible = State
  312. end)
  313. Toggle1:AddToolTip("Toggle 1 ToolTip")
  314.  
  315.  
  316. local Toggle1 = Section1:CreateToggle("Filled FOV", nil, function(State)
  317. circle.Filled = State
  318. end)
  319. Toggle1:AddToolTip("Filled FOV")
  320.  
  321. local Toggle1 = Section2:CreateToggle("Enable", nil, function(State)
  322. getgenv().Aimbot.Enabled = State
  323. end)
  324. Toggle1:AddToolTip("Enables Aimbot")
  325.  
  326. local Toggle1 = Section2:CreateToggle("Enable Smoothness", nil, function(State)
  327.     getgenv().Aimbot.Smoothing = State
  328. end)
  329. Toggle1:AddToolTip("Enables Aimbot Smoothness")
  330.  
  331. local Toggle1 = Section2:CreateToggle("Airshot Function", nil, function(State)
  332. getgenv().Aimbot.AirshotFunc = State
  333. end)
  334. Toggle1:AddToolTip("Enables Airshot Function")
  335.  
  336. local TextBox1 = Section2:CreateTextBox("Prediction", "Enter Prediction Here!", true, function(Value)
  337. getgenv().Aimbot.Predicting = Value
  338. end)
  339. TextBox1:AddToolTip("Changes Aimbot Prediction")
  340.  
  341. local TextBox1 = Section2:CreateTextBox("Smoothness Amount", "Change Smoothness Here!", true, function(Value)
  342. getgenv().Aimbot.Smoothness = Value
  343. end)
  344. TextBox1:AddToolTip("Changes Smoothness Amount")
  345.  
  346. local Button1 = Misc1:CreateButton("Cframe (Z)",  function(Click)
  347.     repeat
  348.         wait()
  349.     until game:IsLoaded()
  350.     local L_134_ = game:service('Players')
  351.     local L_135_ = L_134_.LocalPlayer
  352.     repeat
  353.         wait()
  354.     until L_135_.Character
  355.     local L_136_ = game:service('UserInputService')
  356.     local L_137_ = game:service('RunService')
  357.     getgenv().Multiplier = 0.1
  358.     local L_138_ = true
  359.     local L_139_
  360.     L_136_.InputBegan:connect(function(L_140_arg0)
  361.         if L_140_arg0.KeyCode == Enum.KeyCode.LeftBracket then
  362.             Multiplier = Multiplier + 0.01
  363.             print(Multiplier)
  364.             wait(0.2)
  365.             while L_136_:IsKeyDown(Enum.KeyCode.LeftBracket) do
  366.                 wait()
  367.                 Multiplier = Multiplier + 0.01
  368.                 print(Multiplier)
  369.             end
  370.         end
  371.         if L_140_arg0.KeyCode == Enum.KeyCode.RightBracket then
  372.             Multiplier = Multiplier - 0.01
  373.             print(Multiplier)
  374.             wait(0.2)
  375.             while L_136_:IsKeyDown(Enum.KeyCode.RightBracket) do
  376.                 wait()
  377.                 Multiplier = Multiplier - 0.01
  378.                 print(Multiplier)
  379.             end
  380.         end
  381.         if L_140_arg0.KeyCode == Enum.KeyCode.Z then
  382.             L_138_ = not L_138_
  383.             if L_138_ == true then
  384.                 repeat
  385.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.Humanoid.MoveDirection * Multiplier
  386.                     game:GetService("RunService").Stepped:wait()
  387.                 until L_138_ == false
  388.             end
  389.         end
  390.     end)
  391. end)
  392. Button1:AddToolTip("Enables Cframe Speed")
  393.  
  394. local Slider1 = Misc1:CreateSlider("Cframe Speed", 0,10,nil,true, function(Value)
  395. getgenv().Multiplier = Value
  396. end)
  397. Slider1:AddToolTip("p")
  398. Slider1:SetValue(1)
  399.  
  400. local Button1 = Misc1:CreateButton("Fix Cframe",  function(Click)
  401.     for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  402.         if v:IsA("Script") and v.Name ~= "Health" and v.Name ~= "Sound" and v:FindFirstChild("LocalScript") then
  403.             v:Destroy()
  404.         end
  405.     end
  406.     game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  407.         repeat
  408.             wait()
  409.         until game.Players.LocalPlayer.Character
  410.         char.ChildAdded:Connect(function(child)
  411.             if child:IsA("Script") then
  412.                 wait(0.1)
  413.                 if child:FindFirstChild("LocalScript") then
  414.                     child.LocalScript:FireServer()
  415.                 end
  416.             end
  417.         end)
  418.     end)
  419. end)
  420.  
  421. local Toggle1 = Misc1:CreateToggle("Fist Reach", nil, function(e)
  422.    if e == true then
  423.         game:GetService('RunService'):BindToRenderStep("Reach", 0 , function()
  424.             local success, err = pcall(function()
  425.                 if game.Players.LocalPlayer.Character.BodyEffects.Attacking.Value == true then
  426.                     for i,v in pairs(game:GetService('Players'):GetChildren()) do
  427.                         if (v.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.LeftHand.Position).Magnitude <= 50 then
  428.                             if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  429.                                 if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):FindFirstChild('Handle') then
  430.                                     firetouchinterest(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle, v.Character.UpperTorso, 0)
  431.                                 else
  432.                                     firetouchinterest(game.Players.LocalPlayer.Character['RightHand'], v.Character.UpperTorso, 0)
  433.                                     firetouchinterest(game.Players.LocalPlayer.Character['LeftHand'], v.Character.UpperTorso, 0)
  434.                                     firetouchinterest(game.Players.LocalPlayer.Character['RightFoot'], v.Character.UpperTorso, 0)
  435.                                     firetouchinterest(game.Players.LocalPlayer.Character['LeftFoot'], v.Character.UpperTorso, 0)
  436.                                     firetouchinterest(game.Players.LocalPlayer.Character['RightLowerLeg'], v.Character.UpperTorso, 0)
  437.                                     firetouchinterest(game.Players.LocalPlayer.Character['LeftLowerLeg'], v.Character.UpperTorso, 0)
  438.                                 end
  439.                             end
  440.                         end
  441.                     end
  442.                 end
  443.             end)
  444.         end)
  445.     elseif e == false then
  446.         game:GetService('RunService'):UnbindFromRenderStep("Reach")
  447.     end
  448. end)
  449. Toggle1:AddToolTip("Pushin P")
  450.  
  451. local Button1 = Misc1:CreateButton("Ungrab",  function(Click)
  452.    local player = game.Players.LocalPlayer
  453.     local GC = game:GetService("Workspace").Players:WaitForChild(player.Name):FindFirstChild("GRABBING_CONSTRAINT")
  454.     if GC then
  455.         GC:Destroy()
  456.         wait(0.04)
  457.         player.character.Humanoid.Sit = true
  458.         wait(0.04)
  459.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(3)
  460.     end
  461. end)
  462.  
  463. local Slider1 = Misc1:CreateSlider("Walkspeed", 0, 200,nil,true, function(t)
  464.     game.Players.LocalPlayer.Character:FindFirstChildWhichIsA('Humanoid').Name = 'SWAG MODE'
  465.     game.Players.LocalPlayer.Character:FindFirstChildWhichIsA('Humanoid').WalkSpeed = t
  466.     if t == 16 then
  467.         game.Players.LocalPlayer.Character:FindFirstChildWhichIsA('Humanoid').Name = 'Humanoid'
  468.         game.Players.LocalPlayer.Character:FindFirstChildWhichIsA('Humanoid').WalkSpeed = 16
  469.     end
  470. end)
  471. Slider1:AddToolTip("P")
  472. Slider1:SetValue(16)
  473.  
  474. local Button1 = Misc1:CreateButton("Unbag",  function(Click)
  475.     local LP = game.Players.LocalPlayer;
  476.  
  477.     for i,v in ipairs(LP.Character:GetDescendants()) do
  478.         if v.Name == "Christmas_Sock" then v:Destroy()
  479.             end;
  480.         end;
  481.            
  482.         LP.Character.ChildAdded:Connect(function()
  483.         wait(0.3)
  484.         for i,v in ipairs(LP.Character:GetDescendants()) do
  485.         if v.Name == "Christmas_Sock" then v:Destroy()
  486.         end;
  487.         end;
  488.         end);
  489. end)
  490.  
  491. local Toggle1 = Misc1:CreateToggle("AutoStomp", nil, function(r)
  492.     if r == true then
  493.         game:GetService('RunService'):BindToRenderStep("Auto-Stomp", 0 , function()
  494.             game:GetService("ReplicatedStorage").MainEvent:FireServer("Stomp")
  495.         end)
  496.     elseif r == false then
  497.         game:GetService('RunService'):UnbindFromRenderStep("Auto-Stomp")
  498.     end
  499. end)
  500. Toggle1:AddToolTip("Tp")
  501.  
  502. local Toggle1 = Misc1:CreateToggle("Antistomp", nil, function(x)
  503.   if x == true then
  504.         game:GetService('RunService'):BindToRenderStep("Anti-Stomp", 0 , function()
  505.             if game.Players.LocalPlayer.Character.Humanoid.Health <= 5 then
  506.                 for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  507.                     if v:IsA('MeshPart') or v:IsA('Part') then
  508.                         v:Destroy()
  509.                     end
  510.                 end
  511.                 for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  512.                     if v:IsA('Accessory') then
  513.                         v.Handle:Destroy()
  514.                     end
  515.                 end
  516.             end
  517.         end)
  518.     elseif x == false then
  519.         game:GetService('RunService'):UnbindFromRenderStep("Anti-Stomp")
  520.     end
  521. end)
  522. Toggle1:AddToolTip("3 f32f ToolTip")
  523.  
  524. local Button1 = Fun:CreateButton("Become Naked",  function(Click)
  525. local function inTable(What, Table)
  526.         for Index, Value in pairs(Table) do
  527.             if What == Value then
  528.                 return true
  529.             end
  530.         end
  531.         return false
  532.     end
  533.  
  534.     local removingClasses = {
  535.         "Accessory",
  536.         "Pants",
  537.         "Shirt",
  538.     }
  539.  
  540.     for _, Instance in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  541.         if inTable(Instance.ClassName, removingClasses) or Instance.Name == "face" then
  542.             Instance:Destroy()
  543.         end
  544.     end
  545. end)
  546.  
  547. local Toggle1 = Misc1:CreateToggle("Auto Reload", nil, function(r)
  548.    if r == true then
  549.         game:GetService('RunService'):BindToRenderStep("Auto-Reload", 0 , function()
  550.             if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  551.                 if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild("Ammo") then
  552.                     if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild("Ammo").Value <= 0 then
  553.                         game:GetService("ReplicatedStorage").MainEvent:FireServer("Reload", game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"))
  554.                         wait(1)
  555.                     end
  556.                 end
  557.             end
  558.         end)
  559.     elseif r == false then
  560.         game:GetService('RunService'):UnbindFromRenderStep("Auto-Reload")
  561.     end
  562. end)
  563. Toggle1:AddToolTip("Tip")
  564.  
  565. local Button1 = Misc1:CreateButton("Free Fist (P)",  function(Click)
  566.     -- // Variables
  567.     local localPlayer       = game:GetService("Players").LocalPlayer
  568.     local localCharacter    = localPlayer.Character
  569.     local Mouse             = localPlayer:GetMouse()
  570.     local FistControl       = false
  571.     local LeftFist          = localCharacter.LeftHand
  572.     local RightFist         = localCharacter.RightHand
  573.  
  574.     -- // Services
  575.     local uis = game:GetService("UserInputService")
  576.  
  577.     -- // Coroutine Loop + Functions
  578.     local loopFunction = function()
  579.         LeftFist.CFrame  = CFrame.new(Mouse.Hit.p)
  580.         RightFist.CFrame = CFrame.new(Mouse.Hit.p)
  581.     end
  582.  
  583.     local Loop
  584.  
  585.     local Start = function()
  586.         Loop = game:GetService("RunService").Heartbeat:Connect(loopFunction)
  587.     end
  588.  
  589.     local Pause = function()
  590.         Loop:Disconnect()
  591.     end
  592.  
  593.     -- // Hotkeys
  594.     uis.InputBegan:connect(function(Key)
  595.         if (Key.KeyCode == Enum.KeyCode.P) then
  596.             if (FistControl == false) then
  597.                 FistControl = true
  598.                 Start()
  599.                 pcall(function()
  600.                     localCharacter.RightHand.RightWrist:Remove()
  601.                     localCharacter.LeftHand.LeftWrist:Remove()
  602.                 end)
  603.             elseif (FistControl == true) then
  604.                 FistControl = false
  605.                 Pause()
  606.                 local rightwrist  = Instance.new("Motor6D")
  607.                 rightwrist.Name   = "RightWrist"
  608.                 rightwrist.Parent = localCharacter.RightHand
  609.                 rightwrist.C0     = CFrame.new(1.18422506e-07, -0.5009287, -6.81715525e-18, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  610.                 rightwrist.C1     = CFrame.new(3.55267503e-07, 0.125045404, 5.92112528e-08, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  611.                 rightwrist.Part0  = localCharacter.RightLowerArm
  612.                 rightwrist.Part1  = localCharacter.RightHand
  613.  
  614.                 local leftwrist   = Instance.new("Motor6D")
  615.                 leftwrist.Name    = "LeftWrist"
  616.                 leftwrist.Parent  = localCharacter.LeftHand
  617.                 leftwrist.C0      = CFrame.new(0.000475466368, -0.5009287, 7.59417072e-20, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  618.                 leftwrist.C1      = CFrame.new(0.000475821638, 0.125045404, 5.92112528e-08, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  619.                 leftwrist.Part0   = localCharacter.LeftLowerArm
  620.                 leftwrist.Part1   = localCharacter.LeftHand
  621.             end
  622.         end
  623.     end)
  624. end)
  625.  
  626. local Button1 = Fun:CreateButton("ShutDown Roblox",  function(Click)
  627. game:GetService'RunService'.Stepped:Wait()
  628. game:Shutdown()
  629. end)
  630.  
  631. local Button1 = Fun:CreateButton("Add Everyone",  function(Click)
  632. local obese = game:GetService('Players')
  633. for _,kachow in pairs(obese:GetPlayers()) do
  634. obese.LocalPlayer:RequestFriendship(kachow, kachow)
  635. end
  636. end)
  637.  
  638. local Button1 = Fun:CreateButton("PP Bat",  function(Click)
  639.  local d = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  640.     local k = game.Workspace.Ignored.Shop["[Bat] - $250"]
  641.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  642.     if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - k.Head.Position).Magnitude <= 50 then
  643.         wait(.2)
  644.         fireclickdetector(k:FindFirstChild("ClickDetector"), 4)
  645.         toolf = game.Players.LocalPlayer.Backpack:WaitForChild("[Bat]")
  646.         toolf.Parent = game.Players.LocalPlayer.Character
  647.         wait()
  648.         game.Players.LocalPlayer.Character:WaitForChild("[Bat]")
  649.         game.Players.LocalPlayer.Character:WaitForChild("[Bat]").Grip = CFrame.new(-2.4000001, -0.699999988, 0, 0, 1, -0, -1, 0, -0, 0, 0, 1)
  650.         game.Players.LocalPlayer.Character:WaitForChild("[Bat]").GripForward = Vector3.new(0, -1, -0)
  651.         game.Players.LocalPlayer.Character:WaitForChild("[Bat]").GripPos = Vector3.new(1.2111, 1.11114, 1.8111)
  652.         game.Players.LocalPlayer.Character:WaitForChild("[Bat]").GripUp = Vector3.new(-500000, 404, 5000000)
  653.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(d)
  654.     end
  655. end)
  656.  
  657. local Button1 = Misc1:CreateButton("Antimask",  function(Click)
  658.     for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  659.         if v and v.Character and v.Character:FindFirstChildOfClass("Humanoid") and v.Character:FindFirstChildOfClass("Humanoid").DisplayDistanceType ~= Enum.HumanoidDisplayDistanceType.Viewer then
  660.             v.Character:FindFirstChildOfClass("Humanoid").DisplayDistanceType = Enum.HumanoidDisplayDistanceType.Viewer
  661.         end
  662.     end
  663. end)
  664.  
  665. local Button1 = Misc1:CreateButton("Invisible mask",  function(Click)
  666.     local d = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  667.     local k = game.Workspace.Ignored.Shop["[Surgeon Mask] - $25"]
  668.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  669.     if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - k.Head.Position).Magnitude <= 50 then
  670.         wait(.2)
  671.         fireclickdetector(k:FindFirstChild("ClickDetector"), 4)
  672.         toolf = game.Players.LocalPlayer.Backpack:WaitForChild("Mask")
  673.         toolf.Parent = game.Players.LocalPlayer.Character
  674.         wait()
  675.         game.Players.LocalPlayer.Character:WaitForChild("Mask")
  676.         game:GetService("VirtualUser"):ClickButton1(Vector2.new())
  677.         game.Players.LocalPlayer.Character:WaitForChild("In-gameMask")
  678.         game.Players.LocalPlayer.Character["In-gameMask"].Handle:Destroy()
  679.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(d)
  680.     end
  681. end)
  682.  
  683. local Button1 = Fun:CreateButton("Bike Fly",  function(Click)
  684.     local speed = 20
  685.     local old
  686.     local Plr = game.Players.LocalPlayer
  687.     local wheels = {}
  688.     local control = {q=false,e=false,w=false,a=false,s=false,d=false}
  689.     local Mouse = Plr:GetMouse()
  690.  
  691.     Mouse.KeyDown:connect(function(KEY)
  692.         local key = KEY:lower()
  693.         if control[key] ~= nil then
  694.             control[key]=true
  695.         end
  696.     end)
  697.  
  698.     Mouse.KeyUp:connect(function(KEY)
  699.         local key = KEY:lower()
  700.         if control[key] ~= nil then
  701.             control[key]=false
  702.         end
  703.     end)
  704.  
  705.     while game.RunService.Stepped:wait() do
  706.         local seat = (Plr.Character or Plr.CharacterAdded:wait()):WaitForChild("Humanoid").SeatPart
  707.         if Plr.PlayerGui:FindFirstChild("MainScreenGui") and Plr.PlayerGui.MainScreenGui:FindFirstChild("Bar") and Plr.PlayerGui.MainScreenGui.Bar:FindFirstChild("Speed") then
  708.             Plr.PlayerGui.MainScreenGui.Bar.Speed.bar.Size = UDim2.new(speed / 100 * 0.95, 0, 0.83, 0)
  709.         else
  710.             local c = Plr.PlayerGui.MainScreenGui.Bar.HP
  711.             local g = c:Clone()
  712.             g.Name = "Speed"
  713.             g.Position = UDim2.new(0.5, 0, 1, -120)
  714.             g.bar.BackgroundColor3 = Color3.fromRGB(255, 155, 0)
  715.             g.Picture.Image.Image = "rbxassetid://181035717"
  716.             g.TextLabel.Text = "Speed"
  717.             g.Parent = c.Parent
  718.         end
  719.         if seat ~= nil and seat:IsDescendantOf(game.Workspace.Vehicles) then
  720.             if seat ~= old then
  721.                 if old then
  722.                     old.Vel:Destroy()
  723.                     old.Gyro:Destroy()
  724.                 end
  725.                 old = seat
  726.                 for i = 1, 2 do
  727.                     if wheels[i] then
  728.                         wheels[i][2].Parent = wheels[i][1]
  729.                     end
  730.                     local wheel = seat.Parent.Wheel
  731.                     wheels[i] = {seat.Parent, wheel}
  732.                     wheel:remove()
  733.                 end
  734.                 local gyro = Instance.new("BodyGyro", seat)
  735.                 gyro.Name = "Gyro"
  736.                 local pos = Instance.new("BodyVelocity", seat)
  737.                 pos.Name = "Vel"
  738.                 gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  739.                 pos.MaxForce = Vector3.new(9e9, 9e9, 9e9)
  740.             else
  741.                 seat.Gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  742.                 local vel = CFrame.new(0, 0, 0)
  743.                 if control.w then
  744.                     vel = vel * CFrame.new(0, 0, -speed)
  745.                 end
  746.                 if control.s then
  747.                     vel = vel * CFrame.new(0, 0, speed)
  748.                 end
  749.                 if control.a then
  750.                     vel = vel * CFrame.new(-speed, 0, 0)
  751.                 end
  752.                 if control.d then
  753.                     vel = vel * CFrame.new(speed, 0, 0)
  754.                 end
  755.                 seat.Vel.Velocity = (seat.CFrame*vel).p - seat.CFrame.p
  756.             end
  757.         end
  758.         if control.e and speed<100 then
  759.             speed = speed + 1
  760.         end
  761.         if control.q and speed > 0 then
  762.             speed = speed - 1
  763.         end
  764.     end
  765. end)
  766.  
  767. local Button1 = Misc1:CreateButton("Chat Logs",  function(Click)
  768.    local LP = game.Players.LocalPlayer
  769.     LP.PlayerGui.Chat.Frame.ChatChannelParentFrame.Visible = true
  770.     LP.PlayerGui.Chat.Frame.ChatBarParentFrame.Position = LP.PlayerGui.Chat.Frame.ChatChannelParentFrame.Position + UDim2.new(UDim.new(),LP.PlayerGui.Chat.Frame.ChatChannelParentFrame.Size.Y)
  771. end)
  772.  
  773.  
  774.  
  775. local Button1 = Misc1:CreateButton("Animation Pack",  function(Click)
  776. local Folder = Instance.new('Folder', game:GetService("Workspace"))
  777.     local AnimationPack = game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.AnimationPack
  778.     local ScrollingFrame = AnimationPack.ScrollingFrame
  779.     local CloseButton = AnimationPack.CloseButton
  780.  
  781.     AnimationPack.Visible = true
  782.  
  783.     local LeanAnimation = Instance.new("Animation", Folder)
  784.     LeanAnimation.Name = "LeanAnimation"
  785.     LeanAnimation.AnimationId = "rbxassetid://3152375249"
  786.     local Lean = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(LeanAnimation)
  787.  
  788.     local LayAnimation = Instance.new("Animation", Folder)
  789.     LayAnimation.Name = "LayAnimation"
  790.     LayAnimation.AnimationId = "rbxassetid://3152378852"
  791.     local Lay = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(LayAnimation)
  792.  
  793.     local Dance1Animation = Instance.new("Animation", Folder)
  794.     Dance1Animation.Name = "Dance1Animation"
  795.     Dance1Animation.AnimationId = "rbxassetid://3189773368"
  796.     local Dance1 = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Dance1Animation)
  797.  
  798.     local Dance2Animation = Instance.new("Animation", Folder)
  799.     Dance2Animation.Name = "Dance2Animation"
  800.     Dance2Animation.AnimationId = "rbxassetid://3189776546"
  801.     local Dance2 = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Dance2Animation)
  802.  
  803.     local GreetAnimation = Instance.new("Animation", Folder)
  804.     GreetAnimation.Name = "GreetAnimation"
  805.     GreetAnimation.AnimationId = "rbxassetid://3189777795"
  806.     local Greet = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(GreetAnimation)
  807.  
  808.     local PrayingAnimation = Instance.new("Animation", Folder)
  809.     PrayingAnimation.Name = "PrayingAnimation"
  810.     PrayingAnimation.AnimationId = "rbxassetid://3487719500"
  811.     local Praying = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(PrayingAnimation)
  812.  
  813.     for i,v in pairs(ScrollingFrame:GetChildren()) do
  814.         if v.Name == "TextButton" then
  815.             if v.Text == "Lean" then
  816.                 v.Name = "LeanButton"
  817.             end
  818.         end
  819.     end
  820.  
  821.     for i,v in pairs(ScrollingFrame:GetChildren()) do
  822.         if v.Name == "TextButton" then
  823.             if v.Text == "Lay" then
  824.                 v.Name = "LayButton"
  825.             end
  826.         end
  827.     end
  828.  
  829.     for i,v in pairs(ScrollingFrame:GetChildren()) do
  830.         if v.Name == "TextButton" then
  831.             if v.Text == "Dance1" then
  832.                 v.Name = "Dance1Button"
  833.             end
  834.         end
  835.     end
  836.  
  837.     for i,v in pairs(ScrollingFrame:GetChildren()) do
  838.         if v.Name == "TextButton" then
  839.             if v.Text == "Dance2" then
  840.                 v.Name = "Dance2Button"
  841.             end
  842.         end
  843.     end
  844.  
  845.     for i,v in pairs(ScrollingFrame:GetChildren()) do
  846.         if v.Name == "TextButton" then
  847.             if v.Text == "Greet" then
  848.                 v.Name = "GreetButton"
  849.             end
  850.         end
  851.     end
  852.  
  853.     for i,v in pairs(ScrollingFrame:GetChildren()) do
  854.         if v.Name == "TextButton" then
  855.             if v.Text == "Praying" then
  856.                 v.Name = "PrayingButton"
  857.             end
  858.         end
  859.     end
  860.  
  861.     function Stop()
  862.         Lay:Stop()
  863.         Lean:Stop()
  864.         Dance1:Stop()
  865.         Dance2:Stop()
  866.         Greet:Stop()
  867.         Praying:Stop()
  868.     end
  869.  
  870.     local LeanTextButton = ScrollingFrame.LeanButton
  871.     local LayTextButton = ScrollingFrame.LayButton
  872.     local Dance1TextButton = ScrollingFrame.Dance1Button
  873.     local Dance2TextButton = ScrollingFrame.Dance2Button
  874.     local GreetTextButton = ScrollingFrame.GreetButton
  875.     local PrayingTextButton = ScrollingFrame.PrayingButton
  876.  
  877.     AnimationPack.MouseButton1Click:Connect(function()
  878.         if ScrollingFrame.Visible == false then
  879.             ScrollingFrame.Visible = true
  880.             CloseButton.Visible = true
  881.         end
  882.     end)
  883.     CloseButton.MouseButton1Click:Connect(function()
  884.         if ScrollingFrame.Visible == true then
  885.             ScrollingFrame.Visible = false
  886.             CloseButton.Visible = false
  887.         end
  888.     end)
  889.     LeanTextButton.MouseButton1Click:Connect(function()
  890.         Stop()
  891.         Lean:Play()
  892.     end)
  893.     LayTextButton.MouseButton1Click:Connect(function()
  894.         Stop()
  895.         Lay:Play()
  896.     end)
  897.     Dance1TextButton.MouseButton1Click:Connect(function()
  898.         Stop()
  899.         Dance1:Play()
  900.     end)
  901.     Dance2TextButton.MouseButton1Click:Connect(function()
  902.         Stop()
  903.         Dance2:Play()
  904.     end)
  905.     GreetTextButton.MouseButton1Click:Connect(function()
  906.         Stop()
  907.         Greet:Play()
  908.     end)
  909.     PrayingTextButton.MouseButton1Click:Connect(function()
  910.         Stop()
  911.         Praying:Play()
  912.     end)
  913.  
  914.     game:GetService("Players").LocalPlayer.Character.Humanoid.Running:Connect(function()
  915.         Stop()
  916.     end)
  917.     game:GetService("Players").LocalPlayer.Character.Humanoid.Died:Connect(function()
  918.         Stop()
  919.         repeat
  920.             wait()
  921.         until game:GetService("Players").LocalPlayer.Character.Humanoid.Health == 100
  922.         wait(1)
  923.         local AnimationPack = game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.AnimationPack
  924.         local ScrollingFrame = AnimationPack.ScrollingFrame
  925.         local CloseButton = AnimationPack.CloseButton
  926.  
  927.         AnimationPack.Visible = true
  928.  
  929.         local LeanAnimation = Instance.new("Animation", Folder)
  930.         LeanAnimation.Name = "LeanAnimation"
  931.         LeanAnimation.AnimationId = "rbxassetid://3152375249"
  932.         local Lean = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(LeanAnimation)
  933.  
  934.         local LayAnimation = Instance.new("Animation", Folder)
  935.         LayAnimation.Name = "LayAnimation"
  936.         LayAnimation.AnimationId = "rbxassetid://3152378852"
  937.         local Lay = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(LayAnimation)
  938.  
  939.         local Dance1Animation = Instance.new("Animation", Folder)
  940.         Dance1Animation.Name = "Dance1Animation"
  941.         Dance1Animation.AnimationId = "rbxassetid://3189773368"
  942.         local Dance1 = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Dance1Animation)
  943.  
  944.         local Dance2Animation = Instance.new("Animation", Folder)
  945.         Dance2Animation.Name = "Dance2Animation"
  946.         Dance2Animation.AnimationId = "rbxassetid://3189776546"
  947.         local Dance2 = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Dance2Animation)
  948.  
  949.         local GreetAnimation = Instance.new("Animation", Folder)
  950.         GreetAnimation.Name = "GreetAnimation"
  951.         GreetAnimation.AnimationId = "rbxassetid://3189777795"
  952.         local Greet = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(GreetAnimation)
  953.  
  954.         local PrayingAnimation = Instance.new("Animation", Folder)
  955.         PrayingAnimation.Name = "PrayingAnimation"
  956.         PrayingAnimation.AnimationId = "rbxassetid://3487719500"
  957.         local Praying = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(PrayingAnimation)
  958.  
  959.         for i,v in pairs(ScrollingFrame:GetChildren()) do
  960.             if v.Name == "TextButton" then
  961.                 if v.Text == "Lean" then
  962.                     v.Name = "LeanButton"
  963.                 end
  964.             end
  965.         end
  966.  
  967.         for i,v in pairs(ScrollingFrame:GetChildren()) do
  968.             if v.Name == "TextButton" then
  969.                 if v.Text == "Lay" then
  970.                     v.Name = "LayButton"
  971.                 end
  972.             end
  973.         end
  974.  
  975.         for i,v in pairs(ScrollingFrame:GetChildren()) do
  976.             if v.Name == "TextButton" then
  977.                 if v.Text == "Dance1" then
  978.                     v.Name = "Dance1Button"
  979.                 end
  980.             end
  981.         end
  982.  
  983.         for i,v in pairs(ScrollingFrame:GetChildren()) do
  984.             if v.Name == "TextButton" then
  985.                 if v.Text == "Dance2" then
  986.                     v.Name = "Dance2Button"
  987.                 end
  988.             end
  989.         end
  990.  
  991.         for i,v in pairs(ScrollingFrame:GetChildren()) do
  992.             if v.Name == "TextButton" then
  993.                 if v.Text == "Greet" then
  994.                     v.Name = "GreetButton"
  995.                 end
  996.             end
  997.         end
  998.  
  999.         for i,v in pairs(ScrollingFrame:GetChildren()) do
  1000.             if v.Name == "TextButton" then
  1001.                 if v.Text == "Praying" then
  1002.                     v.Name = "PrayingButton"
  1003.                 end
  1004.             end
  1005.         end
  1006.  
  1007.         function Stop()
  1008.             Lay:Stop()
  1009.             Lean:Stop()
  1010.             Dance1:Stop()
  1011.             Dance2:Stop()
  1012.             Greet:Stop()
  1013.             Praying:Stop()
  1014.         end
  1015.  
  1016.         local LeanTextButton = ScrollingFrame.LeanButton
  1017.         local LayTextButton = ScrollingFrame.LayButton
  1018.         local Dance1TextButton = ScrollingFrame.Dance1Button
  1019.         local Dance2TextButton = ScrollingFrame.Dance2Button
  1020.         local GreetTextButton = ScrollingFrame.GreetButton
  1021.         local PrayingTextButton = ScrollingFrame.PrayingButton
  1022.  
  1023.         AnimationPack.MouseButton1Click:Connect(function()
  1024.             if ScrollingFrame.Visible == false then
  1025.                 ScrollingFrame.Visible = true
  1026.                 CloseButton.Visible = true
  1027.             end
  1028.         end)
  1029.         CloseButton.MouseButton1Click:Connect(function()
  1030.             if ScrollingFrame.Visible == true then
  1031.                 ScrollingFrame.Visible = false
  1032.                 CloseButton.Visible = false
  1033.             end
  1034.         end)
  1035.         LeanTextButton.MouseButton1Click:Connect(function()
  1036.             Stop()
  1037.             Lean:Play()
  1038.         end)
  1039.         LayTextButton.MouseButton1Click:Connect(function()
  1040.             Stop()
  1041.             Lay:Play()
  1042.         end)
  1043.         Dance1TextButton.MouseButton1Click:Connect(function()
  1044.             Stop()
  1045.             Dance1:Play()
  1046.         end)
  1047.         Dance2TextButton.MouseButton1Click:Connect(function()
  1048.             Stop()
  1049.             Dance2:Play()
  1050.         end)
  1051.         GreetTextButton.MouseButton1Click:Connect(function()
  1052.             Stop()
  1053.             Greet:Play()
  1054.         end)
  1055.         PrayingTextButton.MouseButton1Click:Connect(function()
  1056.             Stop()
  1057.             Praying:Play()
  1058.         end)
  1059.     end)
  1060. end)
  1061.  
  1062. local Button1 = Misc1:CreateButton("Autoeat (Chiken)",  function(Click)
  1063.  
  1064. while wait() do
  1065.         pcall(function()
  1066.             if game.Players.LocalPlayer.Character.Humanoid.Health > 50 then
  1067.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 999, 0)
  1068.                 if game.Players.LocalPlayer.Character:FindFirstChild("[Chicken]") == nil or game.Players.LocalPlayer.Backpack:FindFirstChild("[Chicken]") == nil then
  1069.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Ignored.Shop["[Chicken] - $7"].Head.CFrame
  1070.                     wait(0.5)
  1071.                     fireclickdetector(game.Workspace.Ignored.Shop["[Chicken] - $7"].ClickDetector)
  1072.                 end
  1073.                 pcall(function()game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack["[Chicken]"])end)
  1074.                 pcall(function()
  1075.                     game.Players.LocalPlayer.Character["[Chicken]"]:Activate()
  1076.                     wait(0.1)
  1077.                     game.Players.LocalPlayer.Character["[Chicken]"]:Deactivate()
  1078.                 end)
  1079.             end
  1080.         end)
  1081.     end
  1082. end)
  1083.  
  1084. local Button1 = Fun:CreateButton("Walk On Walls",  function(Click)
  1085. loadstring(game:HttpGet("https://raw.githubusercontent.com/D34THEV1L/DaHood-Source/main/DaHood%20WalkOnWalls"))
  1086. end)
  1087.  
  1088. local Button1 = Fun:CreateButton("Juggernaut",  function(Click)
  1089.     local LocalPlayer = game:GetService("Players").LocalPlayer
  1090.     local Mouse = LocalPlayer:GetMouse()
  1091.     local OriginalKeyUpValue = 0
  1092.    
  1093.     local Anim = Instance.new("Animation")
  1094.     Anim.AnimationId = "rbxassetid://2788838708"
  1095.    
  1096.     function StopAudio()
  1097.         LocalPlayer.Character.LowerTorso.BOOMBOXSOUND:Stop()
  1098.     end
  1099.    
  1100.     function stop(ID, Key)
  1101.         local cor = coroutine.wrap(function()
  1102.             wait(LocalPlayer.Character.LowerTorso.BOOMBOXSOUND.TimeLength-0.1)
  1103.             if LocalPlayer.Character.LowerTorso.BOOMBOXSOUND.SoundId == "rbxassetid://"..ID and OriginalKeyUpValue == Key then
  1104.                 StopAudio()
  1105.             end
  1106.         end)
  1107.         cor()
  1108.     end
  1109.    
  1110.     function play(ID, STOP, LMAO)
  1111.         if LocalPlayer.Backpack:FindFirstChild("[Boombox]") then
  1112.             local Tool = nil
  1113.             if LocalPlayer.Character:FindFirstChildOfClass("Tool") and LMAO == true then
  1114.                 Tool = LocalPlayer.Character:FindFirstChildOfClass("Tool")
  1115.                 LocalPlayer.Character:FindFirstChildOfClass("Tool").Parent = LocalPlayer.Backpack
  1116.             end
  1117.             LocalPlayer.Backpack["[Boombox]"].Parent =
  1118.                 LocalPlayer.Character
  1119.             game.ReplicatedStorage.MainEvent:FireServer("Boombox", ID)
  1120.             LocalPlayer.Character["[Boombox]"].RequiresHandle = false
  1121.             if LocalPlayer.Character["[Boombox]"]:FindFirstChild("Handle") then
  1122.                 LocalPlayer.Character["[Boombox]"].Handle:Destroy()
  1123.             end
  1124.             LocalPlayer.Character["[Boombox]"].Parent =
  1125.                 LocalPlayer.Backpack
  1126.             LocalPlayer.PlayerGui.MainScreenGui.BoomboxFrame.Visible = false
  1127.             if Tool ~= true then
  1128.                 if Tool then
  1129.                     Tool.Parent = LocalPlayer.Character
  1130.                 end
  1131.             end
  1132.             if STOP == true then
  1133.                 LocalPlayer.Character.LowerTorso:WaitForChild("BOOMBOXSOUND")
  1134.                 local cor = coroutine.wrap(function()
  1135.                     repeat wait() until LocalPlayer.Character.LowerTorso.BOOMBOXSOUND.SoundId == "rbxassetid://"..ID and LocalPlayer.Character.LowerTorso.BOOMBOXSOUND.TimeLength > 0.01
  1136.                     OriginalKeyUpValue = OriginalKeyUpValue+1
  1137.                     stop(ID, OriginalKeyUpValue)
  1138.                 end)
  1139.                 cor()
  1140.             end
  1141.         end
  1142.     end
  1143.    
  1144.     function Tool()
  1145.         local Tool = Instance.new("Tool")
  1146.         Tool.Name = "Juggernaut"
  1147.         Tool.RequiresHandle = false
  1148.         Tool.Activated:Connect(function()
  1149.             local Character = LocalPlayer.Character
  1150.             local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  1151.    
  1152.             function rm()
  1153.                 for i,v in pairs(Character:GetDescendants()) do
  1154.                     if v:IsA("BasePart") or v:IsA("MeshPart") then
  1155.                         if v.Name ~= "Head" then
  1156.                             for i,cav in pairs(v:GetDescendants()) do
  1157.                                 if cav:IsA("Attachment") then
  1158.                                     if cav:FindFirstChild("OriginalPosition") then
  1159.                                         cav.OriginalPosition:Destroy()
  1160.                                     end
  1161.                                 end
  1162.                             end
  1163.                             for i,v in pairs(v:GetChildren()) do
  1164.                                 if v.Name == "OriginalSize" then
  1165.                                     v:Destroy()
  1166.                                 end
  1167.                             end
  1168.                             if v:FindFirstChild("AvatarPartScaleType") then
  1169.                                 v:FindFirstChild("AvatarPartScaleType"):Destroy()
  1170.                             end
  1171.                         end
  1172.                     end
  1173.                 end
  1174.             end
  1175.    
  1176.             Humanoid:LoadAnimation(Anim):Play()
  1177.             play(862491729, true, true)
  1178.             wait(0.4)
  1179.             rm()
  1180.             Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
  1181.             wait(0.2)
  1182.    
  1183.             rm()
  1184.             Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  1185.             wait(0.02)
  1186.    
  1187.             rm()
  1188.             Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  1189.             wait(0.02)
  1190.    
  1191.             rm()
  1192.             Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
  1193.             wait(0.02)
  1194.         end)
  1195.         Tool.Parent = LocalPlayer.Backpack
  1196.     end
  1197.     Tool()
  1198. end)
  1199.  
  1200. local Button1 = Misc1:CreateButton("Autofarm",  function(Click)
  1201.     loadstring(game:HttpGet("https://raw.githubusercontent.com/lerkermer/lua-projects/master/SwagAutofarm"))()
  1202. end)
  1203.  
  1204. local Button1 = Fun:CreateButton("Heart",  function(Click)
  1205.     game.Players.LocalPlayer.PlayerGui.MainScreenGui.Bar.HP.Picture.Life.Visible = true
  1206.     game.Players.LocalPlayer.PlayerGui:WaitForChild("MainScreenGui"):WaitForChild("Bar"):WaitForChild("HP"):WaitForChild("Picture"):WaitForChild("Life").Visible = true
  1207. end)
  1208.  
  1209. getgenv().cframespeedtoggle = false
  1210. getgenv().speedvalue = 0.35
  1211. getgenv().Spinbot = false
  1212. getgenv().Jitter = false
  1213. getgenv().Layspinbot = false
  1214. getgenv().AntiAim1 = false
  1215. getgenv().AntiAim2 = false
  1216. getgenv().antistomplo = false
  1217. getgenv().autoreload = false
  1218. getgenv().autostomp = false
  1219. getgenv().antibag = false
  1220. getgenv().trashtalkl = false
  1221. getgenv().antilock = false
  1222. getgenv().antilockspeed = 0.260319
  1223. --
  1224. local Jit = math.random(30, 90)
  1225. local Angle = 60
  1226. _G.Save0 = game.Players.LocalPlayer.Character.Head.face.Texture
  1227. _G.Save1 = game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId
  1228. _G.Save2 = game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId
  1229. _G.Save3 = game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId
  1230.  
  1231. game:GetService("RunService").Heartbeat:Connect(
  1232.     function()
  1233.         if cframespeedtoggle == true then
  1234.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1235.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
  1236.                 game.Players.LocalPlayer.Character.Humanoid.MoveDirection * speedvalue
  1237.         end
  1238.         if Spinbot then
  1239.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1240.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(555), 0)
  1241.         end
  1242.         if Jitter then
  1243.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1244.                 CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Position) *
  1245.                 CFrame.Angles(0, math.rad(Angle) + math.rad((math.random(1, 2) == 1 and Jit or -Jit)), 0)
  1246.         end
  1247.  
  1248.         if AntiAim1 then
  1249.             game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity =
  1250.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * -250
  1251.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1252.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(555), 0)
  1253.         end
  1254.         if AntiAim2 then
  1255.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1256.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0.999, 0)
  1257.             wait(0.2)
  1258.         end
  1259.         if getgenv().antistomplo then
  1260.             if game.Players.LocalPlayer.Character.Humanoid.Health <= 5 then
  1261.                 for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1262.                     if v:IsA("BasePart") then
  1263.                         v:Destroy()
  1264.                     end
  1265.                 end
  1266.             end
  1267.         end
  1268.         if getgenv().AutoReloadx then
  1269.             if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  1270.                 if
  1271.                     game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  1272.                         "Ammo"
  1273.                     )
  1274.                  then
  1275.                     if
  1276.                         game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  1277.                             "Ammo"
  1278.                         ).Value <= 0
  1279.                      then
  1280.                         game:GetService("ReplicatedStorage").MainEvent:FireServer(
  1281.                             "Reload",
  1282.                             game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool")
  1283.                         )
  1284.                     end
  1285.                 end
  1286.             end
  1287.         end
  1288.         if getgenv().autostomp then
  1289.             game.ReplicatedStorage.MainEvent:FireServer("Stomp")
  1290.         end
  1291.         if getgenv().antibag then
  1292.             game.Players.LocalPlayer.Character["Christmas_Sock"]:Destroy()
  1293.         end
  1294.         if getgenv().trashtalkl then
  1295.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  1296.                 "LOL",
  1297.                 "All"
  1298.             )
  1299.             wait(1)
  1300.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  1301.                 "trash",
  1302.                 "All"
  1303.             )
  1304.             wait(1)
  1305.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  1306.                 "son",
  1307.                 "All"
  1308.             )
  1309.             wait(1)
  1310.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  1311.                 "quit",
  1312.                 "All"
  1313.             )
  1314.             wait(1)
  1315.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  1316.                 "log life",
  1317.                 "All"
  1318.             )
  1319.             wait(1)
  1320.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  1321.                 "speak w your chin up",
  1322.                 "All"
  1323.             )
  1324.         end
  1325.         if getgenv().antilock then
  1326.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1327.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
  1328.                 -game.Players.LocalPlayer.Character.Humanoid.MoveDirection * getgenv().antilockspeed
  1329.         end
  1330.     end
  1331. )
  1332.  
  1333. local Label1 = Fun:CreateLabel("AA's")
  1334. Label1:UpdateText("AA's")
  1335.  
  1336. local Toggle1 = Fun:CreateToggle("Spinbot AA", nil, function(State)
  1337.     getgenv().AntiAim1 = State
  1338. end)
  1339.  
  1340. local Toggle1 = Fun:CreateToggle("Slingshot AA", nil, function(State)
  1341.     getgenv().AntiAim2 = State
  1342. end)
  1343.  
  1344. local Toggle1 = Fun:CreateToggle("Jitter", nil, function(State)
  1345.     getgenv().Jitter = State
  1346. end)
  1347.  
  1348. local Toggle1 = Fun:CreateToggle("Spinbot", nil, function(State)
  1349.     getgenv().Spinbot = State
  1350. end)
  1351.  
  1352. local Toggle1 = Fun:CreateToggle("Anti Lock", nil, function(State)
  1353.     getgenv().antilock = State
  1354. end)
  1355.  
  1356. local Slider1 = Fun:CreateSlider("Antilock Speed", 0,2,nil,true, function(Value)
  1357. getgenv().antilockspeed = Value
  1358. end)
  1359. Slider1:AddToolTip("Slider dp")
  1360. Slider1:SetValue(1)
  1361.  
  1362. local Button1 = Misc1:CreateButton("Godmode",  function(Click)
  1363.     local localPlayer = game:GetService('Players').LocalPlayer;
  1364.     local localCharacter = localPlayer.Character;
  1365.     localCharacter:FindFirstChildWhichIsA('Humanoid').Health = 0;
  1366.     for _,v in pairs(localPlayer.Character:GetChildren()) do
  1367.         if v:IsA('MeshPart') or v:IsA('Accessory') then
  1368.             v:Destroy();
  1369.         end;
  1370.     end;
  1371.     local newCharacter = localPlayer.CharacterAdded:Wait();
  1372.     local spoofFolder = Instance.new('Folder');
  1373.     spoofFolder.Name = 'FULLY_LOADED_CHAR';
  1374.     spoofFolder.Parent = newCharacter;
  1375.     newCharacter:WaitForChild('RagdollConstraints'):Destroy();
  1376.     newCharacter:WaitForChild('BodyEffects'):WaitForChild('Defense'):Destroy();
  1377.     newCharacter:WaitForChild('BodyEffects'):WaitForChild('Armor'):Destroy();
  1378.     local spoofValue = Instance.new('BoolValue', newCharacter);
  1379.     spoofValue.Name = 'RagdollConstraints';
  1380.     local defValue = Instance.new('IntValue', game:GetService('Players').LocalPlayer.Character:FindFirstChild('BodyEffects'));
  1381.     defValue.Name = 'Defense';
  1382.     local armValue = Instance.new('IntValue', game:GetService('Players').LocalPlayer.Character:FindFirstChild('BodyEffects'));
  1383.     armValue.Name = 'Armor';
  1384. end)
  1385.  
  1386. local Button1 = me:CreateButton("Headless",  function(Click)
  1387.     local L_393_ = game.Players.LocalPlayer.Character
  1388.     local L_394_ = L_393_:WaitForChild("Head")
  1389.     local L_395_ = L_394_:WaitForChild("face")
  1390.     L_395_.Transparency = 1
  1391.     L_394_.Transparency = 1
  1392. end)
  1393.  
  1394. local Button1 = me:CreateButton("Korblox",  function(Click)
  1395.     local L_396_ = game.Players.LocalPlayer.Character
  1396.     local L_397_ = game.Players.LocalPlayer.Character
  1397.     local L_398_ = L_396_.Head
  1398.     local L_399_ = L_398_.face
  1399.     local L_400_ = L_397_.RightFoot
  1400.     local L_401_ = L_397_.RightLowerLeg
  1401.     local L_402_ = L_397_.RightUpperLeg
  1402.     local L_403_ = L_397_.LeftFoot
  1403.     local L_404_ = L_397_.LeftLowerLeg
  1404.     local L_405_ = L_397_.LeftUpperLeg
  1405.    
  1406.     -- Right
  1407.     L_400_.MeshId = "http://www.roblox.com/asset/?id=902942093"
  1408.     L_401_.MeshId = "http://www.roblox.com/asset/?id=902942093"
  1409.     L_402_.MeshId = "http://www.roblox.com/asset/?id=902942096"
  1410.     L_402_.TextureID = "http://roblox.com/asset/?id=902843398"
  1411.     L_400_.Transparency = 1
  1412.     L_401_.Transparency = 1    
  1413. end)
  1414.  
  1415. local Button1 = me:CreateButton("FE Korblox",  function(Click)
  1416. LocalPlayer.Character.RightUpperLeg:Destroy()
  1417. end)
  1418.  
  1419. local Button1 = me:CreateButton("Fat",  function(Click)
  1420.     loadstring(game:HttpGet("https://raw.githubusercontent.com/slammy1/fat/main/3"))()
  1421. end)
  1422.  
  1423. local Button1 = me:CreateButton("Playful Vampire",  function(Click)
  1424.     local L_415_ = game.Players.LocalPlayer.Character
  1425.     local L_416_ = L_415_:WaitForChild("Head")
  1426.     local L_417_ = L_416_:WaitForChild("face")
  1427.     L_417_.Texture = "rbxassetid://2409281591"    
  1428. end)
  1429.  
  1430. local Button1 = me:CreateButton("Red Beastmode",  function(Click)
  1431.     local L_412_ = game.Players.LocalPlayer.Character
  1432.     local L_413_ = L_412_:WaitForChild("Head")
  1433.     local L_414_ = L_413_:WaitForChild("face")
  1434.     L_414_.Texture = "rbxassetid://127959433"  
  1435. end)
  1436.  
  1437. local Button1 = me:CreateButton("Green Beastmode",  function(Click)
  1438.     local L_412_ = game.Players.LocalPlayer.Character
  1439.     local L_413_ = L_412_:WaitForChild("Head")
  1440.     local L_414_ = L_413_:WaitForChild("face")
  1441.     L_414_.Texture = "rbxassetid://2225757922"  
  1442. end)
  1443.  
  1444. local Button1 = me:CreateButton("Blue Beastmode",  function(Click)
  1445.     local L_412_ = game.Players.LocalPlayer.Character
  1446.     local L_413_ = L_412_:WaitForChild("Head")
  1447.     local L_414_ = L_413_:WaitForChild("face")
  1448.     L_414_.Texture = "rbxassetid://209712379"  
  1449. end)
  1450.  
  1451. local Button1 = me:CreateButton("Pink Bubble Trouble",  function(Click)
  1452.     local L_412_ = game.Players.LocalPlayer.Character
  1453.     local L_413_ = L_412_:WaitForChild("Head")
  1454.     local L_414_ = L_413_:WaitForChild("face")
  1455.     L_414_.Texture = "rbxassetid://19264782"  
  1456. end)
  1457.  
  1458. local Button1 = me:CreateButton("Blue Bubble Trouble",  function(Click)
  1459.     local L_412_ = game.Players.LocalPlayer.Character
  1460.     local L_413_ = L_412_:WaitForChild("Head")
  1461.     local L_414_ = L_413_:WaitForChild("face")
  1462.     L_414_.Texture = "rbxassetid://330393309"  
  1463. end)
  1464.  
  1465. local Button1 = me:CreateButton("Purple Bubble Trouble",  function(Click)
  1466. local L_412_ = game.Players.LocalPlayer.Character
  1467. local L_413_ = L_412_:WaitForChild("Head")
  1468. local L_414_ = L_413_:WaitForChild("face")
  1469. L_414_.Texture = "rbxassetid://362047189"  
  1470. end)
  1471.  
  1472. local Button1 = me:CreateButton("Green Bubble Trouble",  function(Click)
  1473.     local L_412_ = game.Players.LocalPlayer.Character
  1474.     local L_413_ = L_412_:WaitForChild("Head")
  1475.     local L_414_ = L_413_:WaitForChild("face")
  1476.     L_414_.Texture = "rbxassetid://380753459"  
  1477. end)
  1478.  
  1479. local Button1 = me:CreateButton("Yum!",  function(Click)
  1480.     local L_415_ = game.Players.LocalPlayer.Character
  1481.     local L_416_ = L_415_:WaitForChild("Head")
  1482.     local L_417_ = L_416_:WaitForChild("face")
  1483.     L_417_.Texture = "rbxassetid://26018945"
  1484. end)
  1485.  
  1486.  
  1487.  
  1488. local Button1 = me:CreateButton("Super Super Happy Face",  function(Click)
  1489.     local L_415_ = game.Players.LocalPlayer.Character
  1490.     local L_416_ = L_415_:WaitForChild("Head")
  1491.     local L_417_ = L_416_:WaitForChild("face")
  1492.     L_417_.Texture = "rbxassetid://494290547"  
  1493. end)
  1494.  
  1495. local Button1 = me:CreateButton("Prankster",  function(Click)
  1496.     local L_415_ = game.Players.LocalPlayer.Character
  1497.     local L_416_ = L_415_:WaitForChild("Head")
  1498.     local L_417_ = L_416_:WaitForChild("face")
  1499.     L_417_.Texture = "rbxassetid://20052028"  
  1500. end)
  1501.  
  1502. local Button1 = me:CreateButton("Touble Maker",  function(Click)
  1503.     local L_415_ = game.Players.LocalPlayer.Character
  1504.     local L_416_ = L_415_:WaitForChild("Head")
  1505.     local L_417_ = L_416_:WaitForChild("face")
  1506.     L_417_.Texture = "rbxassetid://22920500"  
  1507. end)
  1508.  
  1509. local Button1 = me:CreateButton("TattleTale",  function(Click)
  1510.     local L_412_ = game.Players.LocalPlayer.Character
  1511.     local L_413_ = L_412_:WaitForChild("Head")
  1512.     local L_414_ = L_413_:WaitForChild("face")
  1513.     L_414_.Texture = "rbxassetid://26343132"  
  1514. end)
  1515.  
  1516. local Button1 = me:CreateButton("Meanie",  function(Click)
  1517.     local L_415_ = game.Players.LocalPlayer.Character
  1518.     local L_416_ = L_415_:WaitForChild("Head")
  1519.     local L_417_ = L_416_:WaitForChild("face")
  1520.     L_417_.Texture = "rbxassetid://508490451"  
  1521.  
  1522. end)
  1523.  
  1524. local Button1 = me:CreateButton("Stitch Face",  function(Click)
  1525.     local L_415_ = game.Players.LocalPlayer.Character
  1526.     local L_416_ = L_415_:WaitForChild("Head")
  1527.     local L_417_ = L_416_:WaitForChild("face")
  1528.     L_417_.Texture = "rbxassetid://8329438"    
  1529. end)
  1530.  
  1531. local Button1 = me:CreateButton("Madness",  function(Click)
  1532.     local L_415_ = game.Players.LocalPlayer.Character
  1533.     local L_416_ = L_415_:WaitForChild("Head")
  1534.     local L_417_ = L_416_:WaitForChild("face")
  1535.     L_417_.Texture = "rbxassetid://129900258"  
  1536. end)
  1537.  
  1538.  
  1539. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/trendyylol/roblox/main/Libraries/ESP/Pikahub"))()
  1540. local library = loadstring(game:HttpGet("https://pastebin.com/raw/U2HwmEyF"))()    
  1541.  
  1542. local dwEntities = game:GetService("Players")
  1543. local dwLocalPlayer = dwEntities.LocalPlayer
  1544. local dwRunService = game:GetService("RunService")
  1545.  
  1546. local settings_tbl = {
  1547.     ESP_Enabled = false,
  1548.     ESP_TeamCheck = false,
  1549.     Chams = true,
  1550.     Chams_Color = Color3.fromRGB(255,255,255),
  1551.     Chams_Transparency = 0.1,
  1552.     Chams_Glow_Color = Color3.fromRGB(0,0,0)
  1553. }
  1554.  
  1555. function destroy_chams(char)
  1556.  
  1557.     for k,v in next, char:GetChildren() do
  1558.  
  1559.         if v:IsA("BasePart") and v.Transparency ~= 1 then
  1560.  
  1561.             if v:FindFirstChild("Glow") and
  1562.             v:FindFirstChild("Chams") then
  1563.  
  1564.                 v.Glow:Destroy()
  1565.                 v.Chams:Destroy()
  1566.  
  1567.             end
  1568.  
  1569.         end
  1570.  
  1571.     end
  1572.  
  1573. end
  1574.  
  1575. dwRunService.Heartbeat:Connect(function()
  1576.  
  1577.     if settings_tbl.ESP_Enabled then
  1578.  
  1579.         for k,v in next, dwEntities:GetPlayers() do
  1580.  
  1581.             if v ~= dwLocalPlayer then
  1582.  
  1583.                 if v.Character and
  1584.                 v.Character:FindFirstChild("HumanoidRootPart") and
  1585.                 v.Character:FindFirstChild("Humanoid") and
  1586.                 v.Character:FindFirstChild("Humanoid").Health ~= 0 then
  1587.  
  1588.                     if settings_tbl.ESP_TeamCheck == false then
  1589.  
  1590.                         local char = v.Character
  1591.  
  1592.                         for k,b in next, char:GetChildren() do
  1593.  
  1594.                             if b:IsA("BasePart") and
  1595.                             b.Transparency ~= 1 then
  1596.                                
  1597.                                 if settings_tbl.Chams then
  1598.  
  1599.                                     if not b:FindFirstChild("Glow") and
  1600.                                     not b:FindFirstChild("Chams") then
  1601.  
  1602.                                         local chams_box = Instance.new("BoxHandleAdornment", b)
  1603.                                         chams_box.Name = "Chams"
  1604.                                         chams_box.AlwaysOnTop = true
  1605.                                         chams_box.ZIndex = 4
  1606.                                         chams_box.Adornee = b
  1607.                                         chams_box.Color3 = settings_tbl.Chams_Color
  1608.                                         chams_box.Transparency = settings_tbl.Chams_Transparency
  1609.                                         chams_box.Size = b.Size + Vector3.new(0.02, 0.02, 0.02)
  1610.  
  1611.                                         local glow_box = Instance.new("BoxHandleAdornment", b)
  1612.                                         glow_box.Name = "Glow"
  1613.                                         glow_box.AlwaysOnTop = false
  1614.                                         glow_box.ZIndex = 3
  1615.                                         glow_box.Adornee = b
  1616.                                         glow_box.Color3 = settings_tbl.Chams_Glow_Color
  1617.                                         glow_box.Size = chams_box.Size + Vector3.new(0.13, 0.13, 0.13)
  1618.  
  1619.                                     end
  1620.  
  1621.                                 else
  1622.  
  1623.                                     destroy_chams(char)
  1624.  
  1625.                                 end
  1626.                            
  1627.                             end
  1628.  
  1629.                         end
  1630.  
  1631.                     else
  1632.  
  1633.                         if v.Team == dwLocalPlayer.Team then
  1634.                             destroy_chams(v.Character)
  1635.                         end
  1636.  
  1637.                     end
  1638.  
  1639.                 else
  1640.  
  1641.                     destroy_chams(v.Character)
  1642.  
  1643.                 end
  1644.  
  1645.             end
  1646.  
  1647.         end
  1648.  
  1649.     else
  1650.  
  1651.         for k,v in next, dwEntities:GetPlayers() do
  1652.  
  1653.             if v ~= dwLocalPlayer and
  1654.             v.Character and
  1655.             v.Character:FindFirstChild("HumanoidRootPart") and
  1656.             v.Character:FindFirstChild("Humanoid") and
  1657.             v.Character:FindFirstChild("Humanoid").Health ~= 0 then
  1658.                
  1659.                 destroy_chams(v.Character)
  1660.  
  1661.             end
  1662.  
  1663.         end
  1664.  
  1665.     end
  1666.  
  1667. end)
  1668.  
  1669.  
  1670. local Toggle1 = ESP:CreateToggle("Boxes", nil, function(State)
  1671.    getgenv().PikaESPSettings.Box = State
  1672. end)
  1673.  
  1674. local Toggle1 = ESP:CreateToggle("Tracer", nil, function(State)
  1675.     getgenv().PikaESPSettings.Tracers = State
  1676. end)
  1677. local Toggle1 = ESP:CreateToggle("Unlock Tracers", nil, function(State)
  1678.     getgenv().PikaESPSettings.UnlockTracers = State
  1679. end)
  1680.  
  1681. local Toggle1 = ESP:CreateToggle("Names", nil, function(State)
  1682.     getgenv().PikaESPSettings.Name = State
  1683. end)
  1684.  
  1685. local Toggle1 = ESP:CreateToggle("Chams", nil, function(State)
  1686.     settings_tbl.ESP_Enabled = State
  1687. end)
  1688.  
  1689. local Button1 = TP:CreateButton("School Roof", function()
  1690.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-525.353455, 68.125, 311.824402, 0.999992013, 1.03866675e-08, -0.00399552286, -1.03507425e-08, 1, 9.01170427e-09, 0.00399552286, -8.97027519e-09, 0.999992013)
  1691. end)
  1692.  
  1693. local Button1 = TP:CreateButton("GraveYard", function()
  1694.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(135.109558, 99.75, -57.2315979, 0.999993503, -0.000633752206, -0.0035054055, 0.000638642872, 0.999998808, 0.00139435288, 0.00350463158, -0.00139658386, 0.999992728)
  1695. end)
  1696.  
  1697. local Button1 = TP:CreateButton("Gas Station", function()
  1698.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(595.925171, 130.75, -346.41568, -0.0400748774, 7.26109022e-08, 0.999196708, 2.20863914e-08, 1, -7.17834538e-08, -0.999196708, 1.91919352e-08, -0.0400748774)
  1699. end)
  1700.  
  1701. local Button1 = TP:CreateButton("PlayGround", function()
  1702.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-308.851196, 103.049866, -685.874817, 0.0775452703, 4.43633544e-05, -0.996988416, 4.02679916e-06, 1, 4.48105384e-05, 0.996988416, -7.48951334e-06, 0.0775452703)
  1703. end)
  1704.  
  1705. local Button1 = TP:CreateButton("Revolver Roof", function()
  1706.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-634.463135, 80.434761, -204.232559, -0.0190527271, -1.03574322e-07, -0.999818563, 4.36709335e-09, 1, -1.03676342e-07, 0.999818563, -6.3416179e-09, -0.0190527271)
  1707. end)
  1708.  
  1709. local Button1 = TP:CreateButton("Jeffs Tacos", function()
  1710.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(707.502014, 139, -543.044739, -0.00318608154, -0.00102963799, 0.999993861, 0.000187970581, 0.999999464, 0.00103024102, -0.99999404, 0.00019125198, -0.00318560796)
  1711. end)
  1712.  
  1713. local Button1 = TP:CreateButton("UFO", function()
  1714.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2.85052466, 132, -736.571106, -0.0460956171, -4.24733706e-08, -0.998937011, 7.26012459e-08, 1, -4.58687275e-08, 0.998937011, -7.46384217e-08, -0.0460956171)
  1715. end)
  1716.  
  1717. local Button1 = TP:CreateButton("Revolver Mountain", function()
  1718.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-696.847717, 167.674957, -41.0118256, 0.626992583, 7.53169349e-09, -0.779025197, -1.29610933e-09, 1, 8.62493632e-09, 0.779025197, -4.39806902e-09, 0.626992583)
  1719. end)
  1720.  
  1721. local Button1 = TP:CreateButton("Admin Base", function()
  1722.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-872.853516, -34.4276848, -538.013306, -0.999724388, -3.9898886e-08, -0.0234765243, -3.9204977e-08, 1, -3.00177518e-08, 0.0234765243, -2.90890814e-08, -0.999724388)
  1723. end)
  1724.  
  1725. local Button1 = TP:CreateButton("Bank", function()
  1726.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-374.392303, 21.2499924, -287.927338, -0.855447054, -1.72182069e-07, -0.517890275, 2.95946307e-07, 1, -8.21309982e-07, 0.517890275, -8.55854921e-07, -0.855447054)
  1727. end)
  1728.  
  1729.  
  1730.  
  1731. local Button1 = TP:CreateButton("Food Shop (Downhill)", function()
  1732.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-335.141, 23.7129, -298.029)
  1733. end)
  1734.  
  1735. local Button1 = TP:CreateButton("Food Shop (Uphill", function()
  1736.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(298.477, 49.3129, -615.231)
  1737. end)
  1738.  
  1739. local Button1 = TP:CreateButton("Hamburger and Taco", function()
  1740.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-279.501, 22.6801, -803.887)
  1741. end)
  1742.  
  1743. local Button1 = TP:CreateButton("Gun Shop (Uphill)", function()
  1744.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(481.925, 48.1008, -621.23)
  1745. end)
  1746.  
  1747. local Button1 = TP:CreateButton("Gun Shop (Downhill)", function()
  1748.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-580.27, 8.34504, -734.832)
  1749. end)
  1750.  
  1751. local Button1 = TP:CreateButton("Police Station", function()
  1752.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-263.919, 21.8302, -112.858)
  1753. end)
  1754.  
  1755. local Button1 = TP:CreateButton("Fire Department", function()
  1756.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-129.534, 27.842, -113.062)
  1757. end)
  1758.  
  1759. local Button1 = TP:CreateButton("Casino", function()
  1760.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-904.457, 24.7803, -156.994)
  1761. end)
  1762.  
  1763. local Button1 = Autobuy:CreateButton("Double Barrel", function()
  1764.     LocalPlayer = game:GetService "Players".LocalPlayer
  1765.     local k = game.Workspace.Ignored.Shop["[Double-Barrel SG] - $1400"]
  1766.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1767.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1768.     wait(0.5)
  1769.     fireclickdetector(game.Workspace.Ignored.Shop["[Double-Barrel SG] - $1400"].ClickDetector)
  1770.     fireclickdetector(game.Workspace.Ignored.Shop["[Double-Barrel SG] - $1400"].ClickDetector)
  1771.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1772.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1773. end)
  1774.  
  1775. local Button1 = Autobuy:CreateButton("Double Barrel Ammo", function()
  1776.    
  1777.         LocalPlayer = game:GetService "Players".LocalPlayer
  1778.         local k = game.Workspace.Ignored.Shop["18 [Double-Barrel SG Ammo] - $60"]
  1779.         local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1780.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1781.         wait(0.5)
  1782.         fireclickdetector(game.Workspace.Ignored.Shop["18 [Double-Barrel SG Ammo] - $60"].ClickDetector)
  1783.         fireclickdetector(game.Workspace.Ignored.Shop["18 [Double-Barrel SG Ammo] - $60"].ClickDetector)
  1784.         LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1785.         LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1786. end)
  1787.  
  1788. local Button1 = Autobuy:CreateButton("Revolver", function()
  1789.    
  1790.     LocalPlayer = game:GetService "Players".LocalPlayer
  1791.     local k = game.Workspace.Ignored.Shop["[Revolver] - $1300"]
  1792.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1793.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1794.     wait(0.5)
  1795.     fireclickdetector(game.Workspace.Ignored.Shop["[Revolver] - $1300"].ClickDetector)
  1796.     fireclickdetector(game.Workspace.Ignored.Shop["[Revolver] - $1300"].ClickDetector)
  1797.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1798.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1799. end)
  1800.  
  1801. local Button1 = Autobuy:CreateButton("Revolver Ammo", function()
  1802.     LocalPlayer = game:GetService "Players".LocalPlayer
  1803.     local k = game.Workspace.Ignored.Shop["12 [Revolver Ammo] - $75"]
  1804.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1805.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1806.     wait(0.5)
  1807.     fireclickdetector(game.Workspace.Ignored.Shop["12 [Revolver Ammo] - $75"].ClickDetector)
  1808.     fireclickdetector(game.Workspace.Ignored.Shop["12 [Revolver Ammo] - $75"].ClickDetector)
  1809.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1810.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)        
  1811. end)
  1812.  
  1813. local Button1 = Autobuy:CreateButton("SMG", function()
  1814.     LocalPlayer = game:GetService "Players".LocalPlayer
  1815.     local k = game.Workspace.Ignored.Shop["[SMG] - $750"]
  1816.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1817.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1818.     wait(0.5)
  1819.     fireclickdetector(game.Workspace.Ignored.Shop["[SMG] - $750"].ClickDetector)
  1820.     fireclickdetector(game.Workspace.Ignored.Shop["[SMG] - $750"].ClickDetector)
  1821.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1822.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1823. end)
  1824.  
  1825. local Button1 = Autobuy:CreateButton("AK47", function()
  1826.     LocalPlayer = game:GetService "Players".LocalPlayer
  1827.     local k = game.Workspace.Ignored.Shop["[AK47] - $2250"]
  1828.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1829.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1830.     wait(0.5)
  1831.     fireclickdetector(game.Workspace.Ignored.Shop["[AK47] - $2250"].ClickDetector)
  1832.     fireclickdetector(game.Workspace.Ignored.Shop["[AK47] - $2250"].ClickDetector)
  1833.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1834.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1835. end)
  1836.  
  1837. local Button1 = Autobuy:CreateButton("LMG", function()
  1838.     LocalPlayer = game:GetService "Players".LocalPlayer
  1839.     local k = game.Workspace.Ignored.Shop["[LMG] - $3750"]
  1840.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1841.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1842.     wait(0.5)
  1843.     fireclickdetector(game.Workspace.Ignored.Shop["[LMG] - $3750"].ClickDetector)
  1844.     fireclickdetector(game.Workspace.Ignored.Shop["[LMG] - $3750"].ClickDetector)
  1845.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1846.         LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1847. end)
  1848.  
  1849. local Button1 = Autobuy:CreateButton("Glock", function()
  1850.     LocalPlayer = game:GetService "Players".LocalPlayer
  1851.     local k = game.Workspace.Ignored.Shop["[Glock] - $500"]
  1852.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1853.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1854.     wait(0.5)
  1855.     fireclickdetector(game.Workspace.Ignored.Shop["[Glock] - $500"].ClickDetector)
  1856.     fireclickdetector(game.Workspace.Ignored.Shop["[Glock] - $500"].ClickDetector)
  1857.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1858.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1859. end)
  1860.  
  1861. local Button1 = Autobuy:CreateButton("Silencer", function()
  1862.     LocalPlayer = game:GetService "Players".LocalPlayer
  1863.     local k = game.Workspace.Ignored.Shop["[Silencer] - $400"]
  1864.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1865.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1866.     wait(0.5)
  1867.     fireclickdetector(game.Workspace.Ignored.Shop["[Silencer] - $400"].ClickDetector)
  1868.     fireclickdetector(game.Workspace.Ignored.Shop["[Silencer] - $400"].ClickDetector)
  1869.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1870.         LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1871. end)
  1872.  
  1873. local Button1 = Autobuy:CreateButton("RPG", function()
  1874.     local k = game.Workspace.Ignored.Shop["[RPG] - $6000"]
  1875.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1876.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1877.     wait(0.5)
  1878.     fireclickdetector(game.Workspace.Ignored.Shop["[RPG] - $6000"].ClickDetector)
  1879.     fireclickdetector(game.Workspace.Ignored.Shop["[RPG] - $6000"].ClickDetector)
  1880.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1881.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1882. end)
  1883.  
  1884. local Button1 = Autobuy:CreateButton("Flame Thrower", function()
  1885.     LocalPlayer = game:GetService "Players".LocalPlayer
  1886.     local k = game.Workspace.Ignored.Shop["[Flamethrower] - $25000"]
  1887.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1888.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1889.     wait(0.5)
  1890.     fireclickdetector(game.Workspace.Ignored.Shop["[Flamethrower] - $25000"].ClickDetector)
  1891.     fireclickdetector(game.Workspace.Ignored.Shop["[Flamethrower] - $25000"].ClickDetector)
  1892.  
  1893.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1894.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1895. end)
  1896.  
  1897. local Button1 = Autobuy:CreateButton("Aug", function()
  1898.     local LocalPlayer = game:GetService "Players".LocalPlayer
  1899.     local k = game.Workspace.Ignored.Shop["[AUG] - $1950"]
  1900.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1901.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1902.     wait(0.5)
  1903.     fireclickdetector(game.Workspace.Ignored.Shop["[AUG] - $1950"].ClickDetector)
  1904.     fireclickdetector(game.Workspace.Ignored.Shop["[AUG] - $1950"].ClickDetector)
  1905.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1906.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)        
  1907. end)
  1908.  
  1909. local Button1 = Autobuy:CreateButton("Shotgun", function()
  1910.    
  1911.     LocalPlayer = game:GetService "Players".LocalPlayer
  1912.     local k = game.Workspace.Ignored.Shop["[Shotgun] - $1250"]
  1913.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1914.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1915.     wait(0.5)
  1916.     fireclickdetector(game.Workspace.Ignored.Shop["[Shotgun] - $1250"].ClickDetector)
  1917.     fireclickdetector(game.Workspace.Ignored.Shop["[Shotgun] - $1250"].ClickDetector)
  1918.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1919.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1920.    
  1921. end)
  1922.  
  1923. local Button1 = Autobuy:CreateButton("Tactical Shotgun", function()
  1924.    
  1925.     LocalPlayer = game:GetService "Players".LocalPlayer
  1926.     local k = game.Workspace.Ignored.Shop["[Tactical Shotgun] - $1750"]
  1927.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1928.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1929.     wait(0.5)
  1930.     fireclickdetector(game.Workspace.Ignored.Shop["[Tactical Shotgun] - $1750"].ClickDetector)
  1931.     fireclickdetector(game.Workspace.Ignored.Shop["[Tactical Shotgun] - $1750"].ClickDetector)
  1932.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1933.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1934. end)
  1935.  
  1936. local Button1 = Autobuy:CreateButton("P90", function()
  1937.    
  1938.     LocalPlayer = game:GetService "Players".LocalPlayer
  1939.     local k = game.Workspace.Ignored.Shop["[P90] - $1000"]
  1940.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1941.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1942.     wait(0.5)
  1943.     fireclickdetector(game.Workspace.Ignored.Shop["[P90] - $1000"].ClickDetector)
  1944.     fireclickdetector(game.Workspace.Ignored.Shop["[P90] - $1000"].ClickDetector)
  1945.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1946.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1947. end)
  1948.  
  1949. local Button1 = Autobuy:CreateButton("SilencerAR", function()
  1950.    
  1951.     LocalPlayer = game:GetService "Players".LocalPlayer
  1952.     local k = game.Workspace.Ignored.Shop["[SilencerAR] - $1250"]
  1953.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1954.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1955.     wait(0.5)
  1956.     fireclickdetector(game.Workspace.Ignored.Shop["[SilencerAR] - $1250"].ClickDetector)
  1957.     fireclickdetector(game.Workspace.Ignored.Shop["[SilencerAR] - $1250"].ClickDetector)
  1958.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1959.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1960. end)
  1961.  
  1962. local Button1 = Autobuy:CreateButton("AR", function()
  1963.    
  1964.     LocalPlayer = game:GetService "Players".LocalPlayer
  1965.     local k = game.Workspace.Ignored.Shop["[AR] - $1000"]
  1966.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1967.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1968.     wait(0.5)
  1969.     fireclickdetector(game.Workspace.Ignored.Shop["[AR] - $1000"].ClickDetector)
  1970.     fireclickdetector(game.Workspace.Ignored.Shop["[AR] - $1000"].ClickDetector)
  1971.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1972.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1973. end)
  1974.  
  1975. local Button1 = Autobuy:CreateButton("SMG Ammo", function()
  1976.     LocalPlayer = game:GetService "Players".LocalPlayer
  1977.     local k = game.Workspace.Ignored.Shop["80 [SMG Ammo] - $60"]
  1978.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1979.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1980.     wait(0.5)
  1981.     fireclickdetector(game.Workspace.Ignored.Shop["80 [SMG Ammo] - $60"].ClickDetector)
  1982.     fireclickdetector(game.Workspace.Ignored.Shop["80 [SMG Ammo] - $60"].ClickDetector)
  1983.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1984. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1985. end)
  1986.  
  1987. local Button1 = Autobuy:CreateButton("AK47 Ammo", function()
  1988.     local k = game.Workspace.Ignored.Shop["90 [AK47 Ammo] - $80"]
  1989.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  1990.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  1991.     wait(0.5)
  1992.     fireclickdetector(game.Workspace.Ignored.Shop["90 [AK47 Ammo] - $80"].ClickDetector)
  1993.     fireclickdetector(game.Workspace.Ignored.Shop["90 [AK47 Ammo] - $80"].ClickDetector)
  1994.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  1995. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  1996. end)
  1997.  
  1998. local Button1 = Autobuy:CreateButton("LMG Ammo", function()
  1999.     local LocalPlayer = game:GetService "Players".LocalPlayer
  2000.     local k = game.Workspace.Ignored.Shop["200 [LMG Ammo] - $300"]
  2001.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2002.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2003.     wait(0.5)
  2004.     fireclickdetector(game.Workspace.Ignored.Shop["200 [LMG Ammo] - $300"].ClickDetector)
  2005.     fireclickdetector(game.Workspace.Ignored.Shop["200 [LMG Ammo] - $300"].ClickDetector)
  2006.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2007.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  2008. end)
  2009.  
  2010. local Button1 = Autobuy:CreateButton("Glock Ammo", function()
  2011.     local k = game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"]
  2012.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2013.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2014.     wait(0.5)
  2015.     fireclickdetector(game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"].ClickDetector)
  2016.     fireclickdetector(game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"].ClickDetector)
  2017.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2018. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  2019. end)
  2020.  
  2021. local Button1 = Autobuy:CreateButton("Silencer Ammo", function()
  2022.     local LocalPlayer = game:GetService "Players".LocalPlayer
  2023.     local k = game.Workspace.Ignored.Shop["25 [Silencer Ammo] - $50"]
  2024.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2025.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2026.     wait(0.5)
  2027.     fireclickdetector(game.Workspace.Ignored.Shop["25 [Silencer Ammo] - $50"].ClickDetector)
  2028.     fireclickdetector(game.Workspace.Ignored.Shop["25 [Silencer Ammo] - $50"].ClickDetector)
  2029.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2030.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)  
  2031. end)
  2032.  
  2033. local Button1 = Autobuy:CreateButton("RPG Ammo", function()
  2034.     local LocalPlayer = game:GetService "Players".LocalPlayer
  2035.     local k = game.Workspace.Ignored.Shop["5 [RPG Ammo] - $1000"]
  2036.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2037.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2038.     wait(0.5)
  2039.     fireclickdetector(game.Workspace.Ignored.Shop["5 [RPG Ammo] - $1000"].ClickDetector)
  2040.     fireclickdetector(game.Workspace.Ignored.Shop["5 [RPG Ammo] - $1000"].ClickDetector)
  2041.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2042.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  2043. end)
  2044.  
  2045. local Button1 = Autobuy:CreateButton("Flame Ammo", function()
  2046.     local LocalPlayer = game:GetService "Players".LocalPlayer
  2047.     local k = game.Workspace.Ignored.Shop["140 [Flamethrower Ammo] - $1550"]
  2048.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2049.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2050.     wait(0.5)
  2051.     fireclickdetector(game.Workspace.Ignored.Shop["140 [Flamethrower Ammo] - $1550"].ClickDetector)
  2052.     fireclickdetector(game.Workspace.Ignored.Shop["140 [Flamethrower Ammo] - $1550"].ClickDetector)
  2053.  
  2054.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2055.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  2056. end)
  2057.  
  2058. local Button1 = Autobuy:CreateButton("AUG Ammo", function()
  2059.     local LocalPlayer = game:GetService "Players".LocalPlayer
  2060.     local k = game.Workspace.Ignored.Shop["90 [AUG Ammo] - $80"]
  2061.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2062.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2063.     wait(0.5)
  2064.     fireclickdetector(game.Workspace.Ignored.Shop["90 [AUG Ammo] - $80"].ClickDetector)
  2065.     fireclickdetector(game.Workspace.Ignored.Shop["90 [AUG Ammo] - $80"].ClickDetector)
  2066.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2067.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)      
  2068. end)
  2069.  
  2070. local Button1 = Autobuy:CreateButton("", function()
  2071.     local k = game.Workspace.Ignored.Shop["25 [Shotgun Ammo] - $60"]
  2072.     local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2073.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2074.     wait(0.5)
  2075.     fireclickdetector(game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"].ClickDetector)
  2076.     fireclickdetector(game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"].ClickDetector)
  2077.     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2078. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)    
  2079. end)
  2080.  
  2081.  
  2082.  
  2083. local Toggle3 = Section3:CreateToggle("UI Toggle", nil, function(State)
  2084.     Window:Toggle(State)
  2085. end)
  2086. Toggle3:CreateKeybind(tostring(Config.Keybind):gsub("Enum.KeyCode.", ""), function(Key)
  2087.     Config.Keybind = Enum.KeyCode[Key]
  2088. end)
  2089. Toggle3:SetState(true)
  2090.  
  2091. local Colorpicker3 = Section3:CreateColorpicker("UI Color", function(Color)
  2092.     Window:ChangeColor(Color)
  2093. end)
  2094. Colorpicker3:UpdateColor(Config.Color)
  2095.  
  2096. -- credits to jan for patterns
  2097. local Dropdown3 = Section4:CreateDropdown("Image", {"Default","Hearts","Abstract","Hexagon","Circles","Lace With Flowers","Floral"}, function(Name)
  2098.     if Name == "Default" then
  2099.         Window:SetBackground("2151741365")
  2100.     elseif Name == "Hearts" then
  2101.         Window:SetBackground("6073763717")
  2102.     elseif Name == "Abstract" then
  2103.         Window:SetBackground("6073743871")
  2104.     elseif Name == "Hexagon" then
  2105.         Window:SetBackground("6073628839")
  2106.     elseif Name == "Circles" then
  2107.         Window:SetBackground("6071579801")
  2108.     elseif Name == "Lace With Flowers" then
  2109.         Window:SetBackground("6071575925")
  2110.     elseif Name == "Floral" then
  2111.         Window:SetBackground("5553946656")
  2112.     end
  2113. end)
  2114. Dropdown3:SetOption("Default")
  2115.  
  2116.  
  2117.  
  2118. local Colorpicker4 = Section4:CreateColorpicker("Color", function(Color)
  2119.     Window:SetBackgroundColor(Color)
  2120. end)
  2121. Colorpicker4:UpdateColor(Color3.new(1,1,1))
  2122.  
  2123. local Slider3 = Section4:CreateSlider("Transparency",0,1,nil,false, function(Value)
  2124.     Window:SetBackgroundTransparency(Value)
  2125. end)
  2126. Slider3:SetValue(0)
  2127.  
  2128. local Slider4 = Section4:CreateSlider("Tile Scale",0,1,nil,false, function(Value)
  2129.     Window:SetTileScale(Value)
  2130. end)
  2131. Slider4:SetValue(0.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement