_EvilDeveloper

Jong X (Roblox Cheating Script) [Made for Da Hood] {OUTDATED}

Aug 20th, 2022 (edited)
71
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 41.93 KB | Cybersecurity | 0 0
  1. --[[
  2.  
  3. - Made by: TheEvilDeveloper
  4.  
  5. - Prefix: & for chat commands
  6.  
  7. - Created: 2021/01/19, Updated: 2023/04/22
  8.  
  9. - Use it at your own risk.
  10.  
  11. ]]
  12.  
  13. local Workspace = game:GetService("Workspace")
  14. local VirtualUser = game:GetService("VirtualUser")
  15. local TeleportService = game:GetService("TeleportService")
  16. local UserInputService = game:GetService("UserInputService")
  17. local RunService = game:GetService("RunService")
  18. local CoreGui = game:GetService("CoreGui")
  19. local StarterGui = game:GetService("StarterGui")
  20. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  21. local Lighting = game:GetService("Lighting")
  22. local Players = game:GetService("Players")
  23. local Player = Players.LocalPlayer
  24. local Mouse = Player:GetMouse()
  25. local CurrentCamera = workspace.CurrentCamera
  26.  
  27. local DefaultFogEnd = Lighting.FogEnd
  28. local DefaultFogStart = Lighting.FogStart
  29. local DefaultZoom = Player.CameraMaxZoomDistance
  30. local DefaultHandSize = nil
  31. local DefaultFlySpeed = 10
  32.  
  33. local FlyEnabled = false
  34. local Flying = false
  35. local BigFist = false
  36. local InfiniteZoom = false
  37. local Speed = false
  38. local ESP = false
  39. local Collision = true
  40. local InfiniteJump = false
  41. local Fog = true
  42. local AutoStomp = false
  43. local AntiSlow = false
  44. local AntiBag = false
  45. local AntiFlash = false
  46. local RigType = nil
  47. local GuiParent = nil
  48. local Baseplate = nil
  49. local LastDebounce = false
  50. local LastLocation = nil
  51. local WalkSpeed = 75
  52. local FlySpeed = DefaultFlySpeed
  53. local CurrentFlySpeed = 0
  54. local MinimumFlySpeed = 5
  55. local MaximumFlySpeed = 25
  56. local Version = "1.0.7"
  57. local Prefix = "&"
  58. local FlyControl = {F = 0, B = 0, L = 0, R = 0}
  59. local Keys = {W = false, S = false, A = false, D = false}
  60.  
  61. local DefaultBackgroundColor = Color3.fromRGB(0, 0, 0)
  62. local DefaultBorderColor = Color3.fromRGB(85, 170, 255)
  63. local DefaultTextSize = 12
  64. local DefaultFont = Enum.Font.Code
  65.  
  66. repeat wait()
  67.     local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
  68.     if Humanoid ~= nil then
  69.         RigType = Humanoid.RigType
  70.     end
  71.     if RunService:IsStudio() then
  72.         GuiParent = Player.PlayerGui
  73.     else
  74.         GuiParent = CoreGui
  75.     end
  76. until RigType ~= nil and GuiParent ~= nil
  77.  
  78. if RigType == Enum.HumanoidRigType.R15 then
  79.     DefaultHandSize = Player.Character.LeftHand.Size
  80. end
  81.  
  82. if GuiParent == CoreGui then
  83.     if CoreGui:FindFirstChild("TheEvilDeveloper: Jong X") then
  84.         StarterGui:SetCore("SendNotification", {
  85.             Title = "Jong X "..Version;
  86.             Text = "Gui already exists.";
  87.             Duration = 2;
  88.         })
  89.         return
  90.     end
  91. end
  92.  
  93. function Draggable(Object: GuiObject, Draggable: boolean)
  94.     local TweenService = game:GetService("TweenService")
  95.     local UserInputService = game:GetService("UserInputService")
  96.  
  97.     local TweenSpeed = 0.15 -- Delay
  98.     local DragSpeed = 0.25 -- Speed
  99.     local DragToggle = nil
  100.     local DragInput = nil
  101.     local DragStart = nil
  102.     local DragPosition = nil
  103.     local StartPosition = nil
  104.  
  105.     local function UpdateInput(Input)
  106.         if not Draggable then return end        
  107.         local Delta = Input.Position - DragStart
  108.         local Location = UDim2.new(StartPosition.X.Scale, StartPosition.X.Offset + Delta.X, StartPosition.Y.Scale, StartPosition.Y.Offset + Delta.Y)
  109.         TweenService:Create(Object, TweenInfo.new(TweenSpeed), {Position = Location}):Play()
  110.     end
  111.  
  112.     Object.InputBegan:Connect(function(Input)
  113.         if Input.UserInputType == Enum.UserInputType.MouseButton1 or Input.UserInputType == Enum.UserInputType.Touch then
  114.             DragToggle = true
  115.             DragStart = Input.Position
  116.             StartPosition = Object.Position
  117.             Input.Changed:Connect(function()
  118.                 if Input.UserInputState == Enum.UserInputState.End then
  119.                     DragToggle = false
  120.                 end
  121.             end)
  122.         end
  123.     end)
  124.  
  125.     Object.InputChanged:Connect(function(Input)
  126.         if Input.UserInputType == Enum.UserInputType.MouseMovement or Input.UserInputType == Enum.UserInputType.Touch then
  127.             DragInput = Input
  128.         end
  129.     end)
  130.  
  131.     UserInputService.InputChanged:Connect(function(Input)
  132.         if Input == DragInput and DragToggle then
  133.             UpdateInput(Input)
  134.         end
  135.     end)
  136. end
  137.  
  138. function CreateBaseplate()
  139.     Baseplate = Instance.new("Part", Workspace.Terrain)
  140.     Baseplate.Name = "TheEvilDeveloper: Safeplate"
  141.     Baseplate.Anchored = true
  142.     Baseplate.CFrame = CFrame.new(10, 49, 1000, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  143.     Baseplate.Size = Vector3.new(35, 1, 35)
  144.     Baseplate.BrickColor = BrickColor.new("Cloudy grey")
  145. end
  146.  
  147. function FlyFunc()
  148.     local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
  149.     if Humanoid ~= nil and Flying then
  150.         local FlyPart = Instance.new("MeshPart", Player.Character)
  151.         FlyPart.Size = Player.Character.HumanoidRootPart.Size
  152.         FlyPart.CFrame = Player.Character.HumanoidRootPart.CFrame
  153.         FlyPart.Transparency = 1
  154.         FlyPart.Anchored = false
  155.         FlyPart.CanCollide = false
  156.         FlyPart.Name = "TheEvilDeveloper: FlyPart"
  157.         local Weld = Instance.new("WeldConstraint", FlyPart)
  158.         Weld.Part0 = Player.Character.HumanoidRootPart
  159.         Weld.Part1 = FlyPart
  160.         Weld.Name = "TheEvilDeveloper: Weld"
  161.         local BodyGyro = Instance.new("BodyGyro", FlyPart)
  162.         BodyGyro.P = 9e4
  163.         BodyGyro.MaxTorque = Vector3.new(9e9, 9e9, 9e9)
  164.         BodyGyro.CFrame = Player.Character.HumanoidRootPart.CFrame
  165.         BodyGyro.Name = "TheEvilDeveloper: BodyGyro"
  166.         local BodyVelocity = Instance.new("BodyVelocity", FlyPart)
  167.         BodyVelocity.Velocity = Vector3.new(0, 0, 0)
  168.         BodyVelocity.MaxForce = Vector3.new(9e9, 9e9, 9e9)
  169.         BodyVelocity.Name = "TheEvilDeveloper: BodyVelocity"
  170.         repeat wait()
  171.             Humanoid.PlatformStand = true
  172.             if FlyControl.L + FlyControl.R ~= 0 or FlyControl.F + FlyControl.B ~= 0 then
  173.                 CurrentFlySpeed += FlySpeed + (CurrentFlySpeed / FlySpeed)
  174.                 if CurrentFlySpeed > FlySpeed then
  175.                     CurrentFlySpeed = FlySpeed
  176.                 end
  177.             elseif (FlyControl.L + FlyControl.R) == 0 or (FlyControl.F + FlyControl.B) ~= 0 and CurrentFlySpeed ~= 0 then
  178.                 CurrentFlySpeed = 0
  179.             end
  180.             if (FlyControl.L + FlyControl.R) ~= 0 or (FlyControl.F + FlyControl.B) ~= 0 then
  181.                 BodyVelocity.Velocity = ((CurrentCamera.CoordinateFrame.LookVector * (FlyControl.F + FlyControl.B)) + ((CurrentCamera.CoordinateFrame * CFrame.new(FlyControl.L + FlyControl.R, (FlyControl.F + FlyControl.B) * 0.2,0).Position) - CurrentCamera.CoordinateFrame.Position)) * CurrentFlySpeed
  182.             elseif (FlyControl.L + FlyControl.R) == 0 and (FlyControl.F + FlyControl.B) == 0 and CurrentFlySpeed ~= 0 then
  183.                 BodyVelocity.Velocity = ((CurrentCamera.CoordinateFrame.LookVector * (FlyControl.F + FlyControl.B)) + ((CurrentCamera.CoordinateFrame * CFrame.new(FlyControl.L + FlyControl.R, (FlyControl.F + FlyControl.B) * 0.2,0).Position) - CurrentCamera.CoordinateFrame.Position)) * CurrentFlySpeed
  184.             else
  185.                 BodyVelocity.Velocity = Vector3.new(0, 0, 0)
  186.             end
  187.             BodyGyro.CFrame = CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((0 + 0) * 360 * CurrentFlySpeed / FlySpeed), 0, 0)
  188.         until Flying == false or not Humanoid or Humanoid.Health < 1
  189.         CurrentFlySpeed = 0
  190.         FlyControl = {F = 0, B = 0, L = 0, R = 0}
  191.         FlyPart:Destroy()
  192.         Humanoid:ChangeState(Enum.HumanoidStateType.Freefall)
  193.         Humanoid.PlatformStand = false
  194.     end
  195. end
  196.  
  197. function DestroySeats()
  198.     for i, v in pairs(workspace:GetDescendants()) do
  199.         if v:IsA("Seat") or v:IsA("VehicleSeat") then
  200.             v:Destroy()
  201.         end
  202.     end
  203. end
  204.  
  205. function NameESPFunc()
  206.     for i, v in pairs(workspace:GetDescendants()) do
  207.         if v:IsA("Humanoid") then
  208.             if v.Parent:FindFirstChild("HumanoidRootPart") then
  209.                 v.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.Viewer
  210.             end
  211.         end
  212.     end
  213. end
  214.  
  215. function AntiBagFunc()
  216.     if AntiBag then
  217.         if Player.Character:FindFirstChild("Christmas_Sock") then
  218.             Player.Character["Christmas_Sock"]:Destroy()
  219.         end
  220.     end
  221. end
  222.  
  223. function ForceResetFunc()
  224.     if Player.Character:FindFirstChild("BodyEffects") then
  225.         Player.Character.BodyEffects:Destroy()
  226.     end
  227.     for i, v in pairs(Player.Character:GetChildren()) do
  228.         v:Destroy()
  229.     end
  230.     Flying = false
  231.     BigFist = false
  232.     Speed = false
  233. end
  234.  
  235. function AntiSlowFunc()
  236.     if AntiSlow then
  237.         if Player.Character:FindFirstChild("BodyEffects") then
  238.             for i, v in pairs(Player.Character.BodyEffects.Movement:GetChildren()) do
  239.                 if v.Name == ("NoJumping") or v.Name == ("ReduceWalk") or v.Name == ("NoWalkSpeed") then
  240.                     v:Destroy()
  241.                 end
  242.             end
  243.             if Player.Character.BodyEffects.Reload.Value == true then
  244.                 Player.Character.BodyEffects.Reload.Value = false
  245.             end
  246.         end
  247.     end
  248. end
  249.  
  250. function InfiniteJumpFunc()
  251.     if InfiniteJump then
  252.         local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
  253.         if Humanoid then
  254.             local function Action(Object, Function) if Object ~= nil and InfiniteJump then Function(Object) end end
  255.             UserInputService.InputBegan:Connect(function(Input)
  256.                 if Input.KeyCode == Enum.KeyCode.Space then
  257.                     Action(Humanoid, function(self)
  258.                         if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  259.                             Action(self.Parent.HumanoidRootPart, function(self)
  260.                                 self.Velocity = Vector3.new(0, 50, 0);
  261.                             end)
  262.                         end
  263.                     end)
  264.                 end
  265.             end)
  266.         end
  267.     end
  268. end
  269.  
  270. function GoToFunc(Username)
  271.     local PlayerFolder = Workspace:FindFirstChild("Players")
  272.     if PlayerFolder then
  273.         local _Player = PlayerFolder:FindFirstChild(Username)
  274.         if _Player then
  275.             Player.Character.HumanoidRootPart.CFrame = _Player.HumanoidRootPart.CFrame
  276.         else
  277.             StarterGui:SetCore("SendNotification", {
  278.                 Title = "Jong X "..Version;
  279.                 Text = "Player does not exist.";
  280.                 Duration = 2;
  281.             })
  282.         end
  283.     else
  284.         local _Player = Players:FindFirstChild(Username)
  285.         if _Player then      
  286.             Player.Character.HumanoidRootPart.CFrame = _Player.Character.HumanoidRootPart.CFrame
  287.         else
  288.             StarterGui:SetCore("SendNotification", {
  289.                 Title = "Jong X "..Version;
  290.                 Text = "Player does not exist.";
  291.                 Duration = 2;
  292.             })
  293.         end
  294.     end    
  295. end
  296.  
  297. function FogFunc()
  298.     if Fog then
  299.         Lighting.FogEnd = DefaultFogEnd
  300.         Lighting.FogStart = DefaultFogStart
  301.     else
  302.         Lighting.FogEnd = math.huge
  303.         Lighting.FogStart = 0
  304.     end
  305. end
  306.  
  307. function ZoomFunc()
  308.     if InfiniteZoom then
  309.         Player.CameraMaxZoomDistance = math.huge
  310.     else
  311.         Player.CameraMaxZoomDistance = DefaultZoom
  312.     end
  313. end
  314.  
  315. function SpeedFunc()
  316.     local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
  317.     if Humanoid then
  318.         if Speed then
  319.             Humanoid.Name = "TheEvilDeveloper: Humanoid"
  320.             Humanoid.WalkSpeed = WalkSpeed
  321.         else
  322.             Humanoid.Name = "Humanoid"
  323.             Humanoid.WalkSpeed = 16
  324.         end
  325.         if Humanoid.Health < 1 then
  326.             Speed = false
  327.         end
  328.     else
  329.         Speed = false
  330.     end
  331. end
  332.  
  333. function CollisionFunc()
  334.     if Collision then
  335.         for i, v in pairs(Player.Character:GetDescendants()) do
  336.             if v.Name == "HumanoidRootPart" or v.Name == "Torso" or v.Name == "UpperTorso" or v.Name == "LowerTorso" or v.Name == "Head" then
  337.                 if v:IsA("Part") or v:IsA("MeshPart") or v:IsA("BasePart") then
  338.                     v.CanCollide = true
  339.                 end
  340.             end
  341.         end
  342.     else
  343.         for i, v in pairs(Player.Character:GetDescendants()) do
  344.             if v.Name == "HumanoidRootPart" or v.Name == "Torso" or v.Name == "UpperTorso" or v.Name == "LowerTorso" or v.Name == "Head" then
  345.                 if v:IsA("Part") or v:IsA("MeshPart") or v:IsA("BasePart") then
  346.                     v.CanCollide = false
  347.                 end
  348.             end
  349.         end
  350.     end
  351. end
  352.  
  353. function NakedFunc()
  354.     for i, v in pairs(Player.Character:GetChildren()) do
  355.         if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("ShirtGraphic") then
  356.             v:Destroy()
  357.         end
  358.     end
  359. end
  360.  
  361. function ESPFunc()
  362.     if ESP then
  363.         for i, v in pairs(Workspace:GetDescendants()) do
  364.             if v:IsA("Humanoid") then
  365.                 local _Player = Players:GetPlayerFromCharacter(v.Parent)
  366.                 if _Player and _Player ~= Player then
  367.                     if _Player.Character.HumanoidRootPart:FindFirstChild("TheEvilDeveloper: ESP") == nil then
  368.                         local ESPGui = Instance.new("BillboardGui", v.RootPart)
  369.                         ESPGui.AlwaysOnTop = true
  370.                         ESPGui.Adornee = v.RootPart
  371.                         ESPGui.Size = UDim2.new(5, 0, 5, 0)
  372.                         ESPGui.Name = "TheEvilDeveloper: ESP"
  373.                         local ESPImage = Instance.new("ImageLabel", ESPGui)
  374.                         ESPImage.Size = UDim2.new(1, 0, 1, 0)
  375.                         ESPImage.Image = "rbxassetid://8257933359" -- Other recommanded id: 6328449823
  376.                         ESPImage.BackgroundTransparency = 1
  377.                         ESPImage.ImageColor3 = DefaultBorderColor
  378.                         ESPImage.Name = "TheEvilDeveloper: ESP-Image"
  379.                         local ESPText = Instance.new("TextLabel", ESPGui)
  380.                         ESPText.BackgroundTransparency = 1
  381.                         ESPText.AnchorPoint = Vector2.new(0.5, 0.5)
  382.                         ESPText.Position = UDim2.new(0.5, 0, 0.5, 0)
  383.                         ESPText.Size = UDim2.new(0.75, 0, 1, 0)
  384.                         ESPText.Font = DefaultFont
  385.                         ESPText.TextColor3 = DefaultBorderColor
  386.                         ESPText.TextScaled = true
  387.                         ESPText.Text = v.Parent.Name
  388.                         ESPText.Name = "TheEvilDeveloper: ESP-Text"
  389.                     end
  390.                 end
  391.             end
  392.         end
  393.     else
  394.         for i, v in pairs(Workspace:GetDescendants()) do
  395.             if v.Name == "TheEvilDeveloper: ESP" then
  396.                 v:Destroy()
  397.             end
  398.         end
  399.     end
  400. end
  401.  
  402. function AutoStompFunc()
  403.     if AutoStomp then
  404.         if ReplicatedStorage:FindFirstChild("MainEvent") then
  405.             ReplicatedStorage.MainEvent:FireServer("Stomp")
  406.         end
  407.     end
  408. end
  409.  
  410. function BigFistFunc()
  411.     if RigType == Enum.HumanoidRigType.R15 then
  412.         DestroySeats()
  413.         if BigFist then
  414.             for i, v in pairs(Player.Character:GetDescendants()) do
  415.                 if v:IsA("MeshPart") then
  416.                     v.Massless = true
  417.                     v.CanCollide = false
  418.                     v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  419.                 end
  420.             end
  421.  
  422.             Player.Character.RightHand.Size = Vector3.new(25, 25, 25)
  423.             Player.Character.LeftHand.Size = Vector3.new(25, 25, 25)
  424.             Player.Character.RightHand.Transparency = 1
  425.             Player.Character.LeftHand.Transparency = 1
  426.  
  427.             local SelectionBox = Instance.new("SelectionBox", Player.Character.HumanoidRootPart)
  428.             SelectionBox.Adornee = Player.Character.LeftHand
  429.             SelectionBox.Color3 = DefaultBorderColor
  430.             SelectionBox.SurfaceColor3 = DefaultBorderColor
  431.             SelectionBox.LineThickness = 0.7
  432.             SelectionBox.SurfaceTransparency = 0.9
  433.             SelectionBox.Name = "TheEvilDeveloper: SelectionBox"
  434.  
  435.             Player.Character.BodyEffects.SpecialParts.LeftHand.Size = Vector3.new(25, 25, 25)
  436.         else
  437.             Player.Character.RightHand.Size = DefaultHandSize
  438.             Player.Character.LeftHand.Size = DefaultHandSize
  439.             Player.Character.HumanoidRootPart["TheEvilDeveloper: SelectionBox"]:Destroy()
  440.             Player.Character.RightHand.Transparency = 0
  441.             Player.Character.LeftHand.Transparency = 0
  442.             Player.Character.BodyEffects.SpecialParts.LeftHand.Size = DefaultHandSize
  443.         end
  444.     end
  445. end
  446.  
  447. function FindFunc()
  448.     local OldCFrame = Player.Character.HumanoidRootPart.CFrame
  449.     wait()
  450.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-680.2, 19.75, -254.97)
  451.     wait()
  452.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-115.495, 19.756, -453.45)
  453.     wait()
  454.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-418.208, 19.25, -748.694)
  455.     wait()
  456.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-418.208, 19.25, -748.694)
  457.     wait()
  458.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(33, 19.75, -184.6)
  459.     wait()
  460.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(243.495, 62, -450.5)
  461.     wait()
  462.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-103.53, 19.75, -220.21)
  463.     wait()
  464.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-581.775, 19.7549, -485.23)
  465.     wait()
  466.     Player.Character.HumanoidRootPart.CFrame = CFrame.new(-399.655, 19.7552, -461.55)
  467.     wait()
  468.     Player.Character.HumanoidRootPart.CFrame = OldCFrame
  469. end
  470.  
  471. function RejoinFunc()
  472.     wait(2)
  473.     TeleportService:Teleport(game.PlaceId, Player)
  474. end
  475.  
  476. function TeleportToolFunc()
  477.     if Player.Backpack:FindFirstChild("Teleport Tool") then
  478.         StarterGui:SetCore("SendNotification", {
  479.             Title = "Jong X "..Version;
  480.             Text = "Tool already exists.";
  481.             Duration = 2;
  482.         })
  483.         return
  484.     end
  485.  
  486.     local Tool = Instance.new("Tool", Player.Backpack)
  487.     Tool.RequiresHandle = false
  488.     Tool.ToolTip = "Made by: TheEvilDeveloper"
  489.     Tool.Name = "Teleport Tool"
  490.  
  491.     Tool.Activated:Connect(function()
  492.         Player.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.Position)
  493.     end)
  494. end
  495.  
  496. function ChatLogsFunc()
  497.     Player.PlayerGui.Chat.Frame.ChatBarParentFrame.Position = UDim2.new(0, 0, 1, -42)
  498.     Player.PlayerGui.Chat.Frame.ChatChannelParentFrame.Visible = true
  499. end
  500.  
  501. function SafeZoneFunc()
  502.     if Baseplate ~= nil then
  503.         Player.Character.HumanoidRootPart.CFrame = Baseplate.CFrame + Vector3.new(0, 10, 0)
  504.     else
  505.         CreateBaseplate()
  506.         return
  507.     end
  508. end
  509.  
  510. function BulletproofFunc()
  511.     if Player.Character:FindFirstChild("BodyEffects") then
  512.         Player.Character.BodyEffects.Armor:Destroy()
  513.         Player.Character.BodyEffects.Defense.CurrentTimeBlock:Destroy()
  514.     end
  515. end
  516.  
  517. function AntiFlashFunc()
  518.     if AntiFlash then
  519.         if Player.PlayerGui:FindFirstChild("MainScreenGui") then
  520.             if Player.PlayerGui.MainScreenGui:FindFirstChild("whiteScreen") then
  521.                 Player.PlayerGui.MainScreenGui.whiteScreen:Destroy()
  522.             end
  523.         end
  524.     end
  525. end
  526.  
  527. CreateBaseplate()
  528.  
  529. StarterGui:SetCore("SendNotification", {
  530.     Title = "Jong X "..Version;
  531.     Text = "Loaded \n Show/Hide: 'RightCtrl'\n Made by: TheEvilDeveloper";
  532.     Duration = 25;
  533.     Button1 = "Okay";
  534. })
  535.  
  536. local Gui = Instance.new("ScreenGui", GuiParent)
  537. local MainFrame = Instance.new("Frame", Gui)
  538. local Title = Instance.new("TextLabel", MainFrame)
  539. local ButtonsFrame = Instance.new("ScrollingFrame", MainFrame)
  540. local UiListLayout = Instance.new("UIListLayout", ButtonsFrame)
  541. local CreditsFrame = Instance.new("Frame", MainFrame)
  542. local Title2 = Instance.new("TextLabel", CreditsFrame)
  543. local CreatorTextLabel = Instance.new("TextLabel", CreditsFrame)
  544. local DiscordTextLabel = Instance.new("TextLabel", CreditsFrame)
  545. local DiscordTextBox = Instance.new("TextBox", CreditsFrame)
  546. local CreditsCloseButton = Instance.new("TextButton", CreditsFrame)
  547. local UsernameTextBox = Instance.new("TextBox", ButtonsFrame)
  548. local FlySpeedTextBox = Instance.new("TextBox", ButtonsFrame)
  549. local SpeedButton = Instance.new("TextButton", ButtonsFrame)
  550. local FlyButton = Instance.new("TextButton", ButtonsFrame)
  551. local BigFistButton = Instance.new("TextButton", ButtonsFrame)
  552. local FogButton = Instance.new("TextButton", ButtonsFrame)
  553. local CollisionButton = Instance.new("TextButton", ButtonsFrame)
  554. local InfiniteZoomButton = Instance.new("TextButton", ButtonsFrame)
  555. local InfiniteJumpButton = Instance.new("TextButton", ButtonsFrame)
  556. local BulletproofButton = Instance.new("TextButton", ButtonsFrame)
  557. local AutoStompButton = Instance.new("TextButton", ButtonsFrame)
  558. local AntiSlowButton = Instance.new("TextButton", ButtonsFrame)
  559. local AntiBagButton = Instance.new("TextButton", ButtonsFrame)
  560. local AntiFlashButton = Instance.new("TextButton", ButtonsFrame)
  561. local ESPButton = Instance.new("TextButton", ButtonsFrame)
  562. local GoToButton = Instance.new("TextButton", ButtonsFrame)
  563. local ForceResetButton = Instance.new("TextButton", ButtonsFrame)
  564. local NameESPButton = Instance.new("TextButton", ButtonsFrame)
  565. local FindButton = Instance.new("TextButton", ButtonsFrame)
  566. local RejoinButton = Instance.new("TextButton", ButtonsFrame)
  567. local TeleportToolButton = Instance.new("TextButton", ButtonsFrame)
  568. local ChatLogsButton = Instance.new("TextButton", ButtonsFrame)
  569. local SafeZoneButton = Instance.new("TextButton", ButtonsFrame)
  570. local NakedButton = Instance.new("TextButton", ButtonsFrame)
  571. local CreditsButton = Instance.new("TextButton", ButtonsFrame)
  572.  
  573. Gui.Name = "TheEvilDeveloper: Jong X"
  574.  
  575. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  576. MainFrame.Size = UDim2.new(0, 250, 0, 325)
  577. MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  578. MainFrame.BackgroundColor3 = DefaultBackgroundColor
  579. MainFrame.BorderColor3 =  DefaultBorderColor
  580. MainFrame.Name = "Main-Frame"
  581. MainFrame.ClipsDescendants = true
  582.  
  583. Title.AnchorPoint = Vector2.new(0.5, 0)
  584. Title.Size = UDim2.new(0.85, 0, 0.165, 0)
  585. Title.Position = UDim2.new(0.5, 0, 0, 0)
  586. Title.Text = "Jong X"
  587. Title.BackgroundTransparency = 1
  588. Title.TextSize = 45
  589. Title.TextColor3 = DefaultBorderColor
  590. Title.Font = DefaultFont
  591. Title.Active = false
  592. Title.Selectable = false
  593. Title.Name = "Title"
  594.  
  595. ButtonsFrame.AnchorPoint = Vector2.new(0.5, 0)
  596. ButtonsFrame.Size = UDim2.new(0.75, 0, 0.75, 0)
  597. ButtonsFrame.Position = UDim2.new(0.5, 0, 0.175, 0)
  598. ButtonsFrame.BackgroundColor3 = DefaultBackgroundColor
  599. ButtonsFrame.BorderColor3 = DefaultBorderColor
  600. ButtonsFrame.ScrollBarThickness = 5
  601. ButtonsFrame.CanvasSize = UDim2.new(0, 0, 2.65, 0)
  602. ButtonsFrame.ScrollBarImageColor3 = DefaultBorderColor
  603. ButtonsFrame.TopImage = "rbxassetid://20121664"
  604. ButtonsFrame.MidImage = "rbxassetid://20121664"
  605. ButtonsFrame.BottomImage = "rbxassetid://20121664"
  606. ButtonsFrame.ScrollBarImageColor3 = DefaultBorderColor
  607. ButtonsFrame.VerticalScrollBarPosition = "Right"
  608. ButtonsFrame.ScrollBarThickness = 0
  609. ButtonsFrame.AutomaticCanvasSize = Enum.AutomaticSize.Y
  610. ButtonsFrame.ScrollingDirection = Enum.ScrollingDirection.Y
  611. ButtonsFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
  612. ButtonsFrame.Active = false
  613.  
  614. ButtonsFrame.Name = "Buttons-Frame"
  615.  
  616. UiListLayout.Padding = UDim.new(0, 3)
  617. UiListLayout.SortOrder = "LayoutOrder"
  618.  
  619. CreditsFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  620. CreditsFrame.Size = UDim2.new(1, 0, 1, 0)
  621. CreditsFrame.Position = UDim2.new(-0.5, 0, 0.5, 0)
  622. CreditsFrame.BackgroundColor3 = DefaultBackgroundColor
  623. CreditsFrame.BorderColor3 =  DefaultBorderColor
  624. CreditsFrame.Name = "Credits-Frame"
  625.  
  626. Title2.AnchorPoint = Vector2.new(0.5, 0)
  627. Title2.Size = UDim2.new(0.85, 0, 0.165, 0)
  628. Title2.Position = UDim2.new(0.5, 0, 0, 0)
  629. Title2.Text = "Credits"
  630. Title2.BackgroundTransparency = 1
  631. Title2.TextSize = 45
  632. Title2.TextColor3 = DefaultBorderColor
  633. Title2.Font = DefaultFont
  634. Title2.Active = false
  635. Title2.Selectable = false
  636. Title2.Name = "Title"
  637.  
  638. CreatorTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  639. CreatorTextLabel.Size = UDim2.new(0.95, 0, 0.1, 0)
  640. CreatorTextLabel.Position = UDim2.new(0.5, 0, 0.25, 0)
  641. CreatorTextLabel.Font = DefaultFont
  642. CreatorTextLabel.BackgroundTransparency = 1
  643. CreatorTextLabel.TextScaled = true
  644. CreatorTextLabel.Text = "Made by: TheEvilDeveloper"
  645. CreatorTextLabel.TextColor3 = DefaultBorderColor
  646. CreatorTextLabel.Name = "Creator-Text-Label"
  647.  
  648. DiscordTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  649. DiscordTextLabel.Size = UDim2.new(0.95, 0, 0.1, 0)
  650. DiscordTextLabel.Position = UDim2.new(0.5, 0, 0.45, 0)
  651. DiscordTextLabel.Font = DefaultFont
  652. DiscordTextLabel.BackgroundTransparency = 1
  653. DiscordTextLabel.TextScaled = true
  654. DiscordTextLabel.Text = "Join our discord server!"
  655. DiscordTextLabel.TextColor3 = DefaultBorderColor
  656. DiscordTextLabel.Name = "Discord-Text-Label"
  657.  
  658. DiscordTextBox.AnchorPoint = Vector2.new(0.5, 0.5)
  659. DiscordTextBox.Size = UDim2.new(0.85, 0, 0, 50)
  660. DiscordTextBox.Position = UDim2.new(0.5, 0, 0.645, 0)
  661. DiscordTextBox.BackgroundColor3 = DefaultBackgroundColor
  662. DiscordTextBox.BorderColor3 = DefaultBorderColor
  663. DiscordTextBox.TextSize = DefaultTextSize
  664. DiscordTextBox.TextColor3 = DefaultBorderColor
  665. DiscordTextBox.Name = "Discord-Text-Box"
  666. DiscordTextBox.Font = DefaultFont
  667. DiscordTextBox.Text = "https://discord.gg/Wf3VPU7Zez"
  668. DiscordTextBox.TextEditable = false
  669. DiscordTextBox.ClearTextOnFocus = false
  670. DiscordTextBox.TextScaled = true
  671.  
  672. CreditsCloseButton.AnchorPoint = Vector2.new(0.5, 0.5)
  673. CreditsCloseButton.Size = UDim2.new(0.5, 0, 0, 32)
  674. CreditsCloseButton.Position = UDim2.new(0.5, 0, 0.85, 0)
  675. CreditsCloseButton.BackgroundColor3 = DefaultBackgroundColor
  676. CreditsCloseButton.BorderColor3 = DefaultBorderColor
  677. CreditsCloseButton.Text = "Close"
  678. CreditsCloseButton.Font = DefaultFont
  679. CreditsCloseButton.TextColor3 = DefaultBorderColor
  680. CreditsCloseButton.TextSize = 14
  681. CreditsCloseButton.Name = "Credits-Close-Button"
  682.  
  683. FlySpeedTextBox.BackgroundColor3 = DefaultBackgroundColor
  684. FlySpeedTextBox.BorderSizePixel = 0
  685. FlySpeedTextBox.TextSize = DefaultTextSize
  686. FlySpeedTextBox.TextColor3 = DefaultBorderColor
  687. FlySpeedTextBox.Name = "FlySpeed-Text-Box"
  688. FlySpeedTextBox.Font = DefaultFont
  689. FlySpeedTextBox.Text = tostring(DefaultFlySpeed)
  690. FlySpeedTextBox.PlaceholderColor3 = DefaultBorderColor
  691. FlySpeedTextBox.PlaceholderText = "Fly Speed 1 -> 25"
  692. FlySpeedTextBox.Size = UDim2.new(1, 0, 0, 32)
  693. FlySpeedTextBox.ClearTextOnFocus = false
  694.  
  695. SpeedButton.BackgroundColor3 = DefaultBackgroundColor
  696. SpeedButton.BorderSizePixel = 0
  697. SpeedButton.TextSize = DefaultTextSize
  698. SpeedButton.LayoutOrder = 2
  699. SpeedButton.TextColor3 = DefaultBorderColor
  700. SpeedButton.Name = "Speed-Button"
  701. SpeedButton.Font = DefaultFont
  702. SpeedButton.Size = UDim2.new(1, 0, 0, 32)
  703.  
  704. FlyButton.BackgroundColor3 = DefaultBackgroundColor
  705. FlyButton.BorderSizePixel = 0
  706. FlyButton.TextSize = DefaultTextSize
  707. FlyButton.LayoutOrder = 1
  708. FlyButton.TextColor3 = DefaultBorderColor
  709. FlyButton.Name = "Fly-Button"
  710. FlyButton.Font = DefaultFont
  711. FlyButton.Size = UDim2.new(1, 0, 0, 32)
  712.  
  713. BigFistButton.BackgroundColor3 = DefaultBackgroundColor
  714. BigFistButton.BorderSizePixel = 0
  715. BigFistButton.TextSize = DefaultTextSize
  716. BigFistButton.LayoutOrder = 3
  717. BigFistButton.TextColor3 = DefaultBorderColor
  718. BigFistButton.Name = "Big-Fist-Button"
  719. BigFistButton.Font = DefaultFont
  720. BigFistButton.Text = "Big Fist"
  721. BigFistButton.Size = UDim2.new(1, 0, 0, 32)
  722.  
  723. FogButton.BackgroundColor3 = DefaultBackgroundColor
  724. FogButton.BorderSizePixel = 0
  725. FogButton.TextSize = DefaultTextSize
  726. FogButton.LayoutOrder = 4
  727. FogButton.TextColor3 = DefaultBorderColor
  728. FogButton.Name = "Fog-Button"
  729. FogButton.Font = DefaultFont
  730. FogButton.Size = UDim2.new(1, 0, 0, 32)
  731.  
  732. CollisionButton.BackgroundColor3 = DefaultBackgroundColor
  733. CollisionButton.BorderSizePixel = 0
  734. CollisionButton.TextSize = DefaultTextSize
  735. CollisionButton.LayoutOrder = 5
  736. CollisionButton.TextColor3 = DefaultBorderColor
  737. CollisionButton.Name = "Collision-Button"
  738. CollisionButton.Font = DefaultFont
  739. CollisionButton.Size = UDim2.new(1, 0, 0, 32)
  740.  
  741. InfiniteZoomButton.BackgroundColor3 = DefaultBackgroundColor
  742. InfiniteZoomButton.BorderSizePixel = 0
  743. InfiniteZoomButton.TextSize = DefaultTextSize
  744. InfiniteZoomButton.LayoutOrder = 6
  745. InfiniteZoomButton.TextColor3 = DefaultBorderColor
  746. InfiniteZoomButton.Name = "Infinite-Zoom-Button"
  747. InfiniteZoomButton.Font = DefaultFont
  748. InfiniteZoomButton.Size = UDim2.new(1, 0, 0, 32)
  749.  
  750. InfiniteJumpButton.BackgroundColor3 = DefaultBackgroundColor
  751. InfiniteJumpButton.BorderSizePixel = 0
  752. InfiniteJumpButton.TextSize = DefaultTextSize
  753. InfiniteJumpButton.LayoutOrder = 7
  754. InfiniteJumpButton.TextColor3 = DefaultBorderColor
  755. InfiniteJumpButton.Name = "Infinite-Jump-Button"
  756. InfiniteJumpButton.Font = DefaultFont
  757. InfiniteJumpButton.Size = UDim2.new(1, 0, 0, 32)
  758.  
  759. AutoStompButton.BackgroundColor3 = DefaultBackgroundColor
  760. AutoStompButton.BorderSizePixel = 0
  761. AutoStompButton.TextSize = DefaultTextSize
  762. AutoStompButton.LayoutOrder = 9
  763. AutoStompButton.TextColor3 = DefaultBorderColor
  764. AutoStompButton.Name = "Auto-Stomp-Button"
  765. AutoStompButton.Font = DefaultFont
  766. AutoStompButton.Size = UDim2.new(1, 0, 0, 32)
  767.  
  768. AntiSlowButton.BackgroundColor3 = DefaultBackgroundColor
  769. AntiSlowButton.BorderSizePixel = 0
  770. AntiSlowButton.TextSize = DefaultTextSize
  771. AntiSlowButton.LayoutOrder = 10
  772. AntiSlowButton.TextColor3 = DefaultBorderColor
  773. AntiSlowButton.Name = "Anti-Slow-Button"
  774. AntiSlowButton.Font = DefaultFont
  775. AntiSlowButton.Size = UDim2.new(1, 0, 0, 32)
  776.  
  777. AntiBagButton.BackgroundColor3 = DefaultBackgroundColor
  778. AntiBagButton.BorderSizePixel = 0
  779. AntiBagButton.TextSize = DefaultTextSize
  780. AntiBagButton.LayoutOrder = 11
  781. AntiBagButton.TextColor3 = DefaultBorderColor
  782. AntiBagButton.Name = "Anti-Bag-Button"
  783. AntiBagButton.Font = DefaultFont
  784. AntiBagButton.Size = UDim2.new(1, 0, 0, 32)
  785.  
  786. AntiFlashButton.BackgroundColor3 = DefaultBackgroundColor
  787. AntiFlashButton.BorderSizePixel = 0
  788. AntiFlashButton.TextSize = DefaultTextSize
  789. AntiFlashButton.LayoutOrder = 12
  790. AntiFlashButton.TextColor3 = DefaultBorderColor
  791. AntiFlashButton.Name = "Anti-Flash-Button"
  792. AntiFlashButton.Font = DefaultFont
  793. AntiFlashButton.Size = UDim2.new(1, 0, 0, 32)
  794.  
  795. ESPButton.BackgroundColor3 = DefaultBackgroundColor
  796. ESPButton.BorderSizePixel = 0
  797. ESPButton.TextSize = DefaultTextSize
  798. ESPButton.LayoutOrder = 13
  799. ESPButton.TextColor3 = DefaultBorderColor
  800. ESPButton.Name = "ESP-Button"
  801. ESPButton.Font = DefaultFont
  802. ESPButton.Size = UDim2.new(1, 0, 0, 32)
  803.  
  804. UsernameTextBox.BackgroundColor3 = DefaultBackgroundColor
  805. UsernameTextBox.BorderSizePixel = 0
  806. UsernameTextBox.TextSize = DefaultTextSize
  807. UsernameTextBox.LayoutOrder = 14
  808. UsernameTextBox.TextColor3 = DefaultBorderColor
  809. UsernameTextBox.Name = "Username-Text-Box"
  810. UsernameTextBox.Font = DefaultFont
  811. UsernameTextBox.Text = ""
  812. UsernameTextBox.PlaceholderColor3 = DefaultBorderColor
  813. UsernameTextBox.PlaceholderText = "Player Username"
  814. UsernameTextBox.Size = UDim2.new(1, 0, 0, 32)
  815. UsernameTextBox.ClearTextOnFocus = false
  816.  
  817. GoToButton.BackgroundColor3 = DefaultBackgroundColor
  818. GoToButton.BorderSizePixel = 0
  819. GoToButton.TextSize = DefaultTextSize
  820. GoToButton.LayoutOrder = 15
  821. GoToButton.TextColor3 = DefaultBorderColor
  822. GoToButton.Name = "Go-To-Button"
  823. GoToButton.Font = DefaultFont
  824. GoToButton.Text = "Go to"
  825. GoToButton.Size = UDim2.new(1, 0, 0, 32)
  826.  
  827. ForceResetButton.BackgroundColor3 = DefaultBackgroundColor
  828. ForceResetButton.BorderSizePixel = 0
  829. ForceResetButton.TextSize = DefaultTextSize
  830. ForceResetButton.LayoutOrder = 16
  831. ForceResetButton.TextColor3 = DefaultBorderColor
  832. ForceResetButton.Name = "Force-Reset-Button"
  833. ForceResetButton.Font = DefaultFont
  834. ForceResetButton.Text = "Force Reset"
  835. ForceResetButton.Size = UDim2.new(1, 0, 0, 32)
  836.  
  837. NameESPButton.BackgroundColor3 = DefaultBackgroundColor
  838. NameESPButton.BorderSizePixel = 0
  839. NameESPButton.TextSize = DefaultTextSize
  840. NameESPButton.LayoutOrder = 17
  841. NameESPButton.TextColor3 = DefaultBorderColor
  842. NameESPButton.Name = "Name-ESP-Button"
  843. NameESPButton.Font = DefaultFont
  844. NameESPButton.Text = "Name-ESP"
  845. NameESPButton.Size = UDim2.new(1, 0, 0, 32)
  846.  
  847. FindButton.BackgroundColor3 = DefaultBackgroundColor
  848. FindButton.BorderSizePixel = 0
  849. FindButton.TextSize = DefaultTextSize
  850. FindButton.LayoutOrder = 18
  851. FindButton.TextColor3 = DefaultBorderColor
  852. FindButton.Name = "Find-Button"
  853. FindButton.Font = DefaultFont
  854. FindButton.Text = "LockPicker & Knife Finder"
  855. FindButton.Size = UDim2.new(1, 0, 0, 32)
  856.  
  857. RejoinButton.BackgroundColor3 = DefaultBackgroundColor
  858. RejoinButton.BorderSizePixel = 0
  859. RejoinButton.TextSize = DefaultTextSize
  860. RejoinButton.LayoutOrder = 19
  861. RejoinButton.TextColor3 = DefaultBorderColor
  862. RejoinButton.Name = "Rejoin-Button"
  863. RejoinButton.Font = DefaultFont
  864. RejoinButton.Text = "Rejoin"
  865. RejoinButton.Size = UDim2.new(1, 0, 0, 32)
  866.  
  867. TeleportToolButton.BackgroundColor3 = DefaultBackgroundColor
  868. TeleportToolButton.BorderSizePixel = 0
  869. TeleportToolButton.TextSize = DefaultTextSize
  870. TeleportToolButton.LayoutOrder = 20
  871. TeleportToolButton.TextColor3 = DefaultBorderColor
  872. TeleportToolButton.Name = "Teleport-Tool-Button"
  873. TeleportToolButton.Font = DefaultFont
  874. TeleportToolButton.Text = "Teleport Tool"
  875. TeleportToolButton.Size = UDim2.new(1, 0, 0, 32)
  876.  
  877. ChatLogsButton.BackgroundColor3 = DefaultBackgroundColor
  878. ChatLogsButton.BorderSizePixel = 0
  879. ChatLogsButton.TextSize = DefaultTextSize
  880. ChatLogsButton.LayoutOrder = 21
  881. ChatLogsButton.TextColor3 = DefaultBorderColor
  882. ChatLogsButton.Name = "Chat-Logs-Button"
  883. ChatLogsButton.Font = DefaultFont
  884. ChatLogsButton.Text = "Chat Logs"
  885. ChatLogsButton.Size = UDim2.new(1, 0, 0, 32)
  886.  
  887. SafeZoneButton.BackgroundColor3 = DefaultBackgroundColor
  888. SafeZoneButton.BorderSizePixel = 0
  889. SafeZoneButton.TextSize = DefaultTextSize
  890. SafeZoneButton.LayoutOrder = 23
  891. SafeZoneButton.TextColor3 = DefaultBorderColor
  892. SafeZoneButton.Name = "Safe-Zone-Button"
  893. SafeZoneButton.Font = DefaultFont
  894. SafeZoneButton.Text = "Safe Zone"
  895. SafeZoneButton.Size = UDim2.new(1, 0, 0, 32)
  896.  
  897. NakedButton.BackgroundColor3 = DefaultBackgroundColor
  898. NakedButton.BorderSizePixel = 0
  899. NakedButton.TextSize = DefaultTextSize
  900. NakedButton.LayoutOrder = 24
  901. NakedButton.TextColor3 = DefaultBorderColor
  902. NakedButton.Name = "Naked-Button"
  903. NakedButton.Font = DefaultFont
  904. NakedButton.Text = "Naked"
  905. NakedButton.Size = UDim2.new(1, 0, 0, 32)
  906.  
  907. BulletproofButton.BackgroundColor3 = DefaultBackgroundColor
  908. BulletproofButton.BorderSizePixel = 0
  909. BulletproofButton.TextSize = DefaultTextSize
  910. BulletproofButton.LayoutOrder = 25
  911. BulletproofButton.TextColor3 = DefaultBorderColor
  912. BulletproofButton.Name = "Bulletproof-Button"
  913. BulletproofButton.Font = DefaultFont
  914. BulletproofButton.Size = UDim2.new(1, 0, 0, 32)
  915. BulletproofButton.Text = "Bulletproof"
  916.  
  917. CreditsButton.BackgroundColor3 = DefaultBackgroundColor
  918. CreditsButton.BorderSizePixel = 0
  919. CreditsButton.TextSize = DefaultTextSize
  920. CreditsButton.LayoutOrder = 26
  921. CreditsButton.TextColor3 = DefaultBorderColor
  922. CreditsButton.Name = "Credits-Button"
  923. CreditsButton.Font = DefaultFont
  924. CreditsButton.Text = "Credits"
  925. CreditsButton.Size = UDim2.new(1, 0, 0, 32)
  926.  
  927. SpeedButton.MouseButton1Down:Connect(function()
  928.     Speed = not Speed  
  929. end)
  930.  
  931. FlyButton.MouseButton1Down:Connect(function()
  932.     FlyEnabled = true
  933.     Flying = not Flying
  934.     FlyFunc()
  935. end)
  936.  
  937. BigFistButton.MouseButton1Down:Connect(function()
  938.     if RigType == Enum.HumanoidRigType.R15 then
  939.         BigFist = not BigFist
  940.         BigFistFunc()
  941.     else
  942.         StarterGui:SetCore("SendNotification", {
  943.             Title = "Jong X "..Version;
  944.             Text = "R6 Is not supported!";
  945.             Duration = 2;
  946.         })
  947.     end
  948. end)
  949.  
  950. FogButton.MouseButton1Down:Connect(function()
  951.     Fog = not Fog
  952. end)
  953.  
  954. CollisionButton.MouseButton1Down:Connect(function()
  955.     Collision = not Collision
  956. end)
  957.  
  958. InfiniteZoomButton.MouseButton1Down:Connect(function()
  959.     InfiniteZoom = not InfiniteZoom
  960. end)
  961.  
  962. InfiniteJumpButton.MouseButton1Down:Connect(function()
  963.     InfiniteJump = not InfiniteJump
  964. end)
  965.  
  966. BulletproofButton.MouseButton1Down:Connect(function()
  967.     BulletproofFunc()    
  968. end)
  969.  
  970. AutoStompButton.MouseButton1Down:Connect(function()
  971.     AutoStomp = not AutoStomp
  972. end)
  973.  
  974. AntiSlowButton.MouseButton1Down:Connect(function()
  975.     AntiSlow = not AntiSlow
  976. end)
  977.  
  978. AntiBagButton.MouseButton1Down:Connect(function()
  979.     AntiBag = not AntiBag
  980. end)
  981.  
  982. AntiFlashButton.MouseButton1Down:Connect(function()
  983.     AntiFlash = not AntiFlash
  984. end)
  985.  
  986. ESPButton.MouseButton1Down:Connect(function()
  987.     ESP = not ESP
  988.     ESPFunc()
  989. end)
  990.  
  991. GoToButton.MouseButton1Down:Connect(function()
  992.     GoToFunc(UsernameTextBox.Text)
  993. end)
  994.  
  995. ForceResetButton.MouseButton1Down:Connect(function()
  996.     ForceResetFunc()
  997. end)
  998.  
  999. NameESPButton.MouseButton1Down:Connect(function()
  1000.     NameESPFunc()
  1001. end)
  1002.  
  1003. FindButton.MouseButton1Down:Connect(function()
  1004.     FindFunc()
  1005. end)
  1006.  
  1007. RejoinButton.MouseButton1Down:Connect(function()
  1008.     RejoinFunc()
  1009. end)
  1010.  
  1011. TeleportToolButton.MouseButton1Down:Connect(function()
  1012.     TeleportToolFunc()
  1013. end)
  1014.  
  1015. ChatLogsButton.MouseButton1Down:Connect(function()
  1016.     ChatLogsFunc()
  1017. end)
  1018.  
  1019. SafeZoneButton.MouseButton1Down:Connect(function()
  1020.     SafeZoneFunc()
  1021. end)
  1022.  
  1023. NakedButton.MouseButton1Down:Connect(function()
  1024.     NakedFunc()
  1025. end)
  1026.  
  1027. CreditsButton.MouseButton1Down:Connect(function()
  1028.     CreditsFrame:TweenPosition(UDim2.new(0.5, 0, 0.5, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.15, false, nil)
  1029. end)
  1030.  
  1031. CreditsCloseButton.MouseButton1Down:Connect(function()
  1032.     CreditsFrame:TweenPosition(UDim2.new(-0.5, 0, 0.5, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.15, false, nil)
  1033. end)
  1034.  
  1035. FlySpeedTextBox.FocusLost:Connect(function()
  1036.     local NewSpeed = tonumber(FlySpeedTextBox.Text)
  1037.     if NewSpeed ~= nil then
  1038.         if NewSpeed < MinimumFlySpeed or NewSpeed > MaximumFlySpeed then
  1039.             StarterGui:SetCore("SendNotification", {
  1040.                 Title = "Jong X "..Version;
  1041.                 Text = "Invaild number!";
  1042.                 Duration = 1;
  1043.             })
  1044.             FlySpeedTextBox.Text = tostring(DefaultFlySpeed)
  1045.         else
  1046.             StarterGui:SetCore("SendNotification", {
  1047.                 Title = "Jong X "..Version;
  1048.                 Text = "Fly Speed Changed to "..tostring(NewSpeed);
  1049.                 Duration = 1;
  1050.             })
  1051.             FlySpeed = math.clamp(NewSpeed, MinimumFlySpeed, MaximumFlySpeed)
  1052.         end
  1053.     else
  1054.         StarterGui:SetCore("SendNotification", {
  1055.             Title = "Jong X "..Version;
  1056.             Text = "Only numbers!";
  1057.             Duration = 1;
  1058.         })
  1059.         FlySpeed = DefaultFlySpeed
  1060.         FlySpeedTextBox.Text = tostring(DefaultFlySpeed)
  1061.     end
  1062. end)
  1063.  
  1064. UserInputService.InputBegan:Connect(function(Input)
  1065.     if Input.KeyCode == Enum.KeyCode.RightControl then
  1066.         if LastDebounce == false then
  1067.             LastDebounce = true
  1068.            
  1069.             if MainFrame.Position == UDim2.new(-1.1, 0, MainFrame.Position.Y.Scale, 0) then
  1070.                 MainFrame:TweenPosition(LastLocation, Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.25, false, nil)
  1071.             else
  1072.                 LastLocation = MainFrame.Position
  1073.                 wait(0.05)
  1074.                 MainFrame:TweenPosition(UDim2.new(-1.1, 0, MainFrame.Position.Y.Scale, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.25, false, nil)
  1075.             end
  1076.            
  1077.             wait(0.24)
  1078.            
  1079.             LastDebounce = false
  1080.         end
  1081.        
  1082.     elseif Input.KeyCode == Enum.KeyCode.X and FlyEnabled then
  1083.         Flying = not Flying
  1084.         FlyFunc()
  1085.     elseif Input.KeyCode == Enum.KeyCode.W then
  1086.         Keys.W = true
  1087.         if Flying then
  1088.             FlyControl.F = FlySpeed
  1089.         end  
  1090.     elseif Input.KeyCode == Enum.KeyCode.S then
  1091.         Keys.S = true
  1092.         if Flying then
  1093.             FlyControl.B = -FlySpeed
  1094.         end  
  1095.     elseif Input.KeyCode == Enum.KeyCode.A then
  1096.         Keys.A = true
  1097.         if Flying then
  1098.             FlyControl.L = -FlySpeed
  1099.         end  
  1100.     elseif Input.KeyCode == Enum.KeyCode.D then
  1101.         Keys.D = true
  1102.         if Flying then
  1103.             FlyControl.R = FlySpeed
  1104.         end    
  1105.     end
  1106. end)
  1107.  
  1108. UserInputService.InputEnded:Connect(function(Input)
  1109.     if Input.KeyCode == Enum.KeyCode.W then
  1110.         Keys.W = false
  1111.         if Flying then
  1112.             FlyControl.F = 0
  1113.         end
  1114.     elseif Input.KeyCode == Enum.KeyCode.S then
  1115.         Keys.S = false
  1116.         if Flying then
  1117.             FlyControl.B = 0
  1118.         end
  1119.     elseif Input.KeyCode == Enum.KeyCode.A then
  1120.         Keys.A = false
  1121.         if Flying then
  1122.             FlyControl.L = 0
  1123.         end
  1124.     elseif Input.KeyCode == Enum.KeyCode.D then
  1125.         Keys.D = false
  1126.         if Flying then
  1127.             FlyControl.R = 0
  1128.         end
  1129.     end
  1130. end)
  1131.  
  1132. Player.Chatted:Connect(function(Message)
  1133.     local FinalMessage = string.lower(Message)
  1134.     if FinalMessage == Prefix.."speed" or FinalMessage == Prefix.."walkspeed" then
  1135.         Speed = not Speed  
  1136.     elseif FinalMessage == Prefix.."fly" then
  1137.         FlyEnabled = true
  1138.         Flying = not Flying
  1139.         FlyFunc()
  1140.     elseif FinalMessage == Prefix.."godbullet" or FinalMessage == Prefix.."bulletproof" then
  1141.         BulletproofFunc()    
  1142.     elseif FinalMessage == Prefix.."fog" or FinalMessage == Prefix.."nofog" or FinalMessage == Prefix.."no-fog" then
  1143.         Fog = not Fog
  1144.     elseif FinalMessage == Prefix.."antibag" or FinalMessage == Prefix.."anti-bag" then
  1145.         AntiBag = not AntiBag
  1146.     elseif FinalMessage == Prefix.."antiflash" or FinalMessage == Prefix.."anti-flash" or FinalMessage == Prefix.."antiflashbang" then
  1147.         AntiFlash = not AntiFlash
  1148.     elseif FinalMessage == Prefix.."collision" or FinalMessage == Prefix.."nocollision" or FinalMessage == Prefix.."no-collision" then
  1149.         Collision = not Collision
  1150.     elseif FinalMessage == Prefix.."infinitezoom" or FinalMessage == Prefix.."infzoom" or FinalMessage == Prefix.."infinite-zoom" or FinalMessage == Prefix.."inf-zoom" then
  1151.         InfiniteZoom = not InfiniteZoom
  1152.     elseif FinalMessage == Prefix.."goto" or FinalMessage == Prefix.."tp" or FinalMessage == Prefix.."teleport" or FinalMessage == Prefix.."go-to" then
  1153.         GoToFunc(UsernameTextBox.Text)
  1154.     elseif FinalMessage == Prefix.."AntiSlow" or FinalMessage == Prefix.."noslow" or FinalMessage == Prefix.."anti-slow" or FinalMessage == Prefix.."no-slow" then
  1155.         AntiSlow = not AntiSlow
  1156.     elseif FinalMessage == Prefix.."bigfist" or FinalMessage == Prefix.."big-fist" then
  1157.         BigFist = not BigFist
  1158.         BigFistFunc()
  1159.     elseif FinalMessage == Prefix.."forcereset" or FinalMessage == Prefix.."reset" then
  1160.         ForceResetFunc()
  1161.     elseif FinalMessage == Prefix.."nameesp" or FinalMessage == Prefix.."masknames" or FinalMessage == Prefix.."name-esp" or FinalMessage == Prefix.."mask-names" then
  1162.         NameESPFunc()
  1163.     elseif FinalMessage == Prefix.."find" then
  1164.         FindFunc()
  1165.     elseif FinalMessage == Prefix.."rejoin" then
  1166.         RejoinFunc()
  1167.     elseif FinalMessage == Prefix.."tp-tool" or FinalMessage == Prefix.."teleport-tool" or FinalMessage == Prefix.."tptool" or FinalMessage == Prefix.."teleporttool" then
  1168.         TeleportToolFunc()
  1169.     elseif FinalMessage == Prefix.."auto-stomp" or FinalMessage == Prefix.."autostomp" then
  1170.         AutoStomp = not AutoStomp
  1171.     elseif FinalMessage == Prefix.."safe" or FinalMessage == Prefix.."safety" or FinalMessage == Prefix.."safezone" or FinalMessage == Prefix.."safe-zone" then
  1172.         SafeZoneFunc()
  1173.     elseif FinalMessage == Prefix.."esp" then
  1174.         ESP = not ESP
  1175.     elseif FinalMessage == Prefix.."naked" then
  1176.         NakedFunc()
  1177.     elseif FinalMessage == Prefix.."infjump" or FinalMessage == Prefix.."inf-jump" or FinalMessage == "infinitejump" or FinalMessage == Prefix.."infinite-jump" then
  1178.         InfiniteJump = not InfiniteJump
  1179.     elseif FinalMessage == Prefix.."credits" then
  1180.         MainFrame.Visible = false
  1181.         CreditsFrame.Visible = true
  1182.     end
  1183. end)
  1184.  
  1185. Draggable(MainFrame, true)
  1186.  
  1187. Player.Idled:Connect(function()
  1188.     VirtualUser:ClickButton2(Vector2.new())
  1189. end)
  1190.  
  1191. RunService:BindToRenderStep("Rainbow", 1000, function()
  1192.     local Hue = tick() % 10 / 10
  1193.     local Color = Color3.fromHSV(Hue, 1, 1)
  1194.     DefaultBorderColor = Color
  1195. end)
  1196.  
  1197. RunService.Stepped:Connect(function()
  1198.     for i, v in pairs(Gui:GetDescendants()) do
  1199.         if v:IsA("TextLabel") or v:IsA("TextButton") then
  1200.             v.BorderColor3 = DefaultBorderColor
  1201.             v.TextColor3 = DefaultBorderColor
  1202.             v.BackgroundColor3 = DefaultBackgroundColor
  1203.         elseif v:IsA("Frame") or v:IsA("ScrollingFrame") then
  1204.             v.BorderColor3 = DefaultBorderColor
  1205.             v.BackgroundColor3 = DefaultBackgroundColor
  1206.         elseif v:IsA("TextBox") then
  1207.             v.BorderColor3 = DefaultBorderColor
  1208.             v.TextColor3 = DefaultBorderColor
  1209.             v.BackgroundColor3 = DefaultBackgroundColor
  1210.             v.PlaceholderColor3 = DefaultBorderColor
  1211.         end
  1212.     end
  1213.    
  1214.     local Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
  1215.    
  1216.     if not Humanoid or Humanoid.Health < 1 then BigFist = false; Flying = false; Speed = false; end
  1217.    
  1218.     SpeedButton.Text = "Speed = "..tostring(Speed)
  1219.     FlyButton.Text = "Fly(X) = "..tostring(Flying)
  1220.     BigFistButton.Text = "Big Fist = "..tostring(BigFist)
  1221.     FogButton.Text = "Fog = "..tostring(Fog)
  1222.     CollisionButton.Text = "Collision = "..tostring(Collision)
  1223.     InfiniteZoomButton.Text = "Infinite Zoom = "..tostring(InfiniteZoom)
  1224.     AutoStompButton.Text = "Auto Stomp = "..tostring(AutoStomp)
  1225.     AntiSlowButton.Text = "Anti Slow = "..tostring(AntiSlow)  
  1226.     AntiBagButton.Text = "Anti Bag = "..tostring(AntiBag)
  1227.     ESPButton.Text = "ESP = "..tostring(ESP)
  1228.     InfiniteJumpButton.Text = "Infinite Jump = "..tostring(InfiniteJump)
  1229.     AntiFlashButton.Text = "Anti Flash = "..tostring(AntiFlash)
  1230.     ESPFunc()
  1231.     InfiniteJumpFunc()
  1232.     AntiSlowFunc()
  1233.     AntiBagFunc()
  1234.     AntiFlashFunc()
  1235.     CollisionFunc()
  1236.     FogFunc()
  1237.     ZoomFunc()
  1238.     SpeedFunc()
  1239.     AutoStompFunc()
  1240. end)
Comments
Add Comment
Please, Sign In to add comment