KScripts

KScripts Script Hub

Aug 27th, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 38.86 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local openmain = Instance.new("Frame")
  3. local open = Instance.new("TextButton")
  4. local main = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local SKYWARS = Instance.new("TextButton")
  7. local SF = Instance.new("TextButton")
  8. local CLOSE = Instance.new("TextButton")
  9. local AHD = Instance.new("TextButton")
  10. local TOH = Instance.new("TextButton")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16.  
  17. openmain.Name = "openmain"
  18. openmain.Parent = ScreenGui
  19. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  20. openmain.Position = UDim2.new(0.841968954, 0, 0.946869075, 0)
  21. openmain.Size = UDim2.new(0, 113, 0, 28)
  22.  
  23. open.Name = "open"
  24. open.Parent = openmain
  25. open.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  26. open.Position = UDim2.new(-0.0707965493, 0, 9.53674316e-07, 0)
  27. open.Size = UDim2.new(0, 113, 0, 28)
  28. open.Font = Enum.Font.SourceSans
  29. open.Text = "OPEN"
  30. open.TextColor3 = Color3.fromRGB(170, 0, 0)
  31. open.TextScaled = true
  32. open.TextSize = 14.000
  33. open.TextWrapped = true
  34. openmain.Visible = false
  35. main.Visible = true
  36.  
  37. main.Name = "main"
  38. main.Parent = ScreenGui
  39. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  40. main.Position = UDim2.new(0.607512951, 0, 0.571157515, 0)
  41. main.Size = UDim2.new(0, 287, 0, 212)
  42.  
  43. TextLabel.Parent = main
  44. TextLabel.BackgroundColor3 = Color3.fromRGB(54, 66, 53)
  45. TextLabel.Position = UDim2.new(0, 0, 0.816037714, 0)
  46. TextLabel.Size = UDim2.new(0, 142, 0, 37)
  47. TextLabel.Font = Enum.Font.SpecialElite
  48. TextLabel.Text = "USE AT YOUR OWN RISK."
  49. TextLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  50. TextLabel.TextScaled = true
  51. TextLabel.TextSize = 14.000
  52. TextLabel.TextWrapped = true
  53.  
  54. SKYWARS.Name = "SKYWARS"
  55. SKYWARS.Parent = main
  56. SKYWARS.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  57. SKYWARS.BorderColor3 = Color3.fromRGB(255, 170, 255)
  58. SKYWARS.BorderSizePixel = 5
  59. SKYWARS.Position = UDim2.new(0.543554008, 0, 0.580188692, 0)
  60. SKYWARS.Size = UDim2.new(0, 113, 0, 44)
  61. SKYWARS.Font = Enum.Font.SourceSans
  62. SKYWARS.Text = "Skywars GUI"
  63. SKYWARS.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. SKYWARS.TextScaled = true
  65. SKYWARS.TextSize = 14.000
  66. SKYWARS.TextWrapped = true
  67. SKYWARS.MouseButton1Down:connect(function()
  68.     loadstring(game:HttpGet("https://raw.githubusercontent.com/2dgeneralspam1/scripts-and-stuff/master/scripts/Loadstring9VHD6Wmyi82n", true))()
  69. end)
  70.  
  71. SF.Name = "SF"
  72. SF.Parent = main
  73. SF.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  74. SF.BorderColor3 = Color3.fromRGB(85, 255, 255)
  75. SF.BorderSizePixel = 5
  76. SF.Position = UDim2.new(0.0278745648, 0, 0.580188692, 0)
  77. SF.Size = UDim2.new(0, 113, 0, 44)
  78. SF.Font = Enum.Font.SourceSans
  79. SF.Text = "Every Sword Fighting game (REACH GUI)"
  80. SF.TextColor3 = Color3.fromRGB(0, 0, 0)
  81. SF.TextScaled = true
  82. SF.TextSize = 14.000
  83. SF.TextWrapped = true
  84. SF.MouseButton1Down:connect(function()
  85.     local Players = game:GetService("Players")
  86.     local LocalPlayer = Players.LocalPlayer or game:GetService("Players"):GetPlayerFromCharacter(Players.LocalPlayer.Character)
  87.     local Character = LocalPlayer.Character or LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Parent
  88.  
  89.     local MT = getrawmetatable(game)
  90.     local OldIndex = MT. __index
  91.     local OldNamecall = MT.__namecall
  92.  
  93.     setreadonly(MT, false)
  94.     MT.__index = newcclosure(function(H, HP, T, D) --Bypasses some anti FTI checks. (uBlubble, Xelvidant, etc.)
  95.         if not checkcaller() and getnamecallmethod() then
  96.             if tostring(H) == "Humanoid" and tostring(HP) == "Health" then
  97.                 return 0
  98.             end
  99.             if tostring(T) == "Position" and tostring(D) == "Magnitude" then
  100.                 return 0
  101.             end
  102.         end
  103.         return OldIndex(H, HP)
  104.     end)
  105.  
  106.     local StarterGui = game:GetService("StarterGui")
  107.     local DevConsoleHook --Bypasses all dev console disablers.
  108.     DevConsoleHook = hookfunc(StarterGui.SetCore, newcclosure(function(Self, ...)
  109.         local Args = table.pack(...)
  110.         if Self == StarterGui then
  111.             if Args[1] == "DevConsoleVisible" then
  112.                 Args[1] = nil
  113.             end
  114.         end
  115.     end))
  116.  
  117.     --Bypasses script execution.
  118.     for _,v in next, getconnections(game:GetService("LogService").MessageOut) do
  119.         v:Disable()
  120.     end
  121.     for _,v in next, getconnections(game:GetService("ScriptContext").Error) do
  122.         v:Disable()
  123.     end
  124.  
  125.     game:GetService("ScriptContext"):SetTimeout(0.1)
  126.     setreadonly(MT, true)
  127.  
  128.     local UNIATTEMPT = true
  129.     local VisualizerTransparencyAmount = 0.4
  130.     local UIS = game:GetService("UserInputService")
  131.  
  132.     -----------------------------
  133.     --bypass 2
  134.     local customtheme = "Dark"
  135.     local reachsize = 5
  136.     local dmgEnabled = true
  137.     local multiplier = 0
  138.     local visualizerEnabled
  139.     local reachType = "Sphere"
  140.  
  141.     local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  142.     local UI = Material.Load({
  143.         Title = "Sebs Darkside",
  144.         Style = 0,
  145.         SizeX = 471,
  146.         SizeY = 269,
  147.         Theme = customtheme
  148.     })
  149.     --page bypass stuffj
  150.  
  151.     UIS.InputBegan:Connect(function(input, gameProcessedEvent)
  152.         if input.KeyCode == Enum.KeyCode.X then
  153.             game:GetService("CoreGui")["Sebs Darkside"].Enabled = not game:GetService("CoreGui")["Sebs Darkside"].Enabled
  154.         end
  155.     end)
  156.  
  157.     --new page which is gonna be circle reach & stuffghj
  158.  
  159.     local Page2 = UI.New({
  160.         Title = "Reach/Circle"
  161.     })
  162.     local Page3 = UI.New({
  163.         Title = "Auto Clicker"
  164.     })
  165.     local Page4 = UI.New({
  166.         Title = "Themes"
  167.     })
  168.  
  169.     local Page5 = UI.New({
  170.         Title = "Visuaizer"
  171.     })
  172.  
  173.  
  174.  
  175.     local ThemePage = Page4.Dropdown({
  176.         Text = "Themes",
  177.         Callback = function(value)
  178.             customtheme = value
  179.             Text = customtheme
  180.         end,
  181.         Options = {"Dark", "Light", "Mocha", "Aqua", "Jester"}
  182.     })
  183.     local ac_on
  184.     local ac_off
  185.     local AcOnText = Page3.TextField({
  186.         Text = "Keybind for autoclicker on",
  187.         Callback = function(value)
  188.             print(ac_on)
  189.             ac_on = value
  190.         end,
  191.     })
  192.     local AcOffText = Page3.TextField({
  193.         Text = "Keybind for autoclicker off ",
  194.         Callback = function(value)
  195.             print(ac_off)
  196.             ac_off = value
  197.         end,
  198.     })
  199.  
  200.     local Mouse = game.Players.LocalPlayer:GetMouse()
  201.     Mouse.KeyDown:Connect(function(key)
  202.         if key == ac_on then
  203.             _G.AutoClicker = true
  204.             while _G.AutoClicker do
  205.                 wait()
  206.                 pcall(function()
  207.                     local Sword = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Tool'
  208.                     Sword:Activate()
  209.                 end)
  210.             end
  211.         end
  212.     end)
  213.     local Mouse = game.Players.LocalPlayer:GetMouse()
  214.     Mouse.KeyDown:Connect(function(key)
  215.         if key == ac_off then
  216.             _G.AutoClicker = false
  217.             while _G.AutoClicker do
  218.                 wait()
  219.                 pcall(function()
  220.                     local Sword = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Tool'
  221.                     Sword:Activate()
  222.                 end)
  223.             end
  224.         end
  225.     end)
  226.  
  227.     local CircleSize = Page2.Slider({
  228.         Text = "Circle Size",
  229.         Callback = function(value)
  230.             reachsize = value
  231.             reachsize = tonumber(value)
  232.         end,
  233.         Min = 0,
  234.         Max = 50,
  235.         Def = 4
  236.     })
  237.     local sparemultiplier = 1
  238.     local dmgEnabled = Page2.Toggle({
  239.         Text = "Enable DMG",
  240.         Callback = function(value)
  241.             dmgEnabled = value
  242.         end,
  243.     })
  244.     local dmgSlider = Page2.Slider({
  245.         Text = "DMG Amount",
  246.         Callback = function(value)
  247.             multiplier = value
  248.             multiplier = tonumber(value)
  249.             sparemultiplier = value
  250.             sparemultiplier = tonumber(value)
  251.         end,
  252.         Min = 0.4,
  253.         Max = 20,
  254.         Def = 1,
  255.  
  256.     })
  257.     local ShapeDropdown = Page5.Dropdown({
  258.         Text = "Visualizer Shape",
  259.         Callback = function(value)
  260.             reachType = value
  261.         end,
  262.         Options = {"Sphere", "Block"}
  263.     })
  264.     local ve = Page5.Toggle({
  265.         Text = "Visualizer",
  266.         Callback = function(value)
  267.             visualizerEnabled = value
  268.         end,
  269.     })
  270.  
  271.  
  272.     local visualizer = Instance.new("Part")
  273.  
  274.     visualizer.Color = Color3.new(1, 0.968627, 0)
  275.     visualizer.Transparency = VisualizerTransparencyAmount
  276.     visualizer.Anchored = true
  277.     visualizer.CanCollide = false
  278.     visualizer.CastShadow = false
  279.     visualizer.Size = Vector3.new(0.5,0.5,0.5)
  280.     visualizer.BottomSurface = Enum.SurfaceType.Glue
  281.     visualizer.TopSurface = Enum.SurfaceType.Glue
  282.     local TweenService = game:GetService("TweenService")
  283.     local part = visualizer
  284.     local TweeningInformation = TweenInfo.new(
  285.         1,
  286.         Enum.EasingStyle.Quad,
  287.         Enum.EasingDirection.Out,
  288.         753475938457843579348573,
  289.         true,
  290.         0
  291.     )
  292.  
  293.     local PartProperties = {
  294.         Color = Color3.fromRGB(255,0,0)
  295.     }
  296.  
  297.     local Tween = TweenService:Create(part,TweeningInformation,PartProperties)
  298.     Tween:Play()
  299.     local Red = Color3.new(1, 0, 0.0156863)
  300.     local Blue = Color3.new(0, 0.180392, 1)
  301.     local Black = Color3.new(0, 0, 0)
  302.     local White = Color3.new(1, 1, 1)
  303.     local config = "Reset"
  304.     local colorrvalue = 0
  305.     local colorgvalue = 0
  306.     local colorbvalue = 0
  307.  
  308.  
  309.  
  310.     local VConfigs = Page5.Dropdown({
  311.         Text = "Configs For Visualizer",
  312.         Callback = function(value)
  313.             config = value
  314.         end,
  315.         Options = {"Sebs Config", "CWare Config", "Blizzy Config", "Reset"}
  316.     })
  317.     --fti script
  318.     local plr = game.Players.LocalPlayer
  319.     local function onHit(hit,handle)
  320.         local victim = hit.Parent:FindFirstChildOfClass("Humanoid")
  321.         if victim and victim.Parent.Name ~= game.Players.LocalPlayer.Name then
  322.             if dmgEnabled then
  323.  
  324.                 for _,v in pairs(hit.Parent:GetChildren()) do
  325.                     if v:IsA("BasePart") then
  326.                         for i = 1, multiplier do
  327.                             firetouchinterest(v,handle,0)
  328.                             firetouchinterest(v,handle,1)
  329.                             firetouchinterest(v,handle,0)
  330.                         end
  331.                     end
  332.                 end
  333.             else
  334.                 firetouchinterest(hit,handle,0)
  335.                 firetouchinterest(hit,handle,1)
  336.             end
  337.         end
  338.     end
  339.  
  340.     local function getWhiteList()
  341.         local wl = {}
  342.         for _,v in pairs(game.Players:GetPlayers()) do
  343.             if v ~= plr then
  344.                 local char = v.Character
  345.                 if char then
  346.                     for _,q in pairs(char:GetChildren()) do
  347.                         if q:IsA("BasePart") then
  348.                             table.insert(wl,q)
  349.                         end
  350.                     end
  351.                 end
  352.             end
  353.         end
  354.         return wl
  355.     end
  356.  
  357.     game:GetService("RunService").RenderStepped:connect(function()
  358.         local s = plr.Character and plr.Character:FindFirstChildOfClass("Tool")
  359.         if not s then visualizer.Parent = nil end
  360.         if s then
  361.             local handle = s:FindFirstChild("Handle") or s:FindFirstChildOfClass("Part")
  362.             if handle then
  363.                 if visualizerEnabled then
  364.                     visualizer.Parent = workspace
  365.                 else
  366.                     visualizer.Parent = nil
  367.                 end
  368.                 local reach = tonumber(reachsize)
  369.  
  370.                 if reach then
  371.                     if reachType == "Sphere" then
  372.                         if config == "CWare Config" then
  373.                             visualizer.Shape = Enum.PartType.Ball
  374.                             visualizer.Material = Enum.Material.Plastic
  375.                             visualizer.Color = Color3.new(1, 0, 0)
  376.                             visualizer.Transparency = 0.005459344392
  377.                             visualizer.Size = Vector3.new(reach,reach,reach)
  378.                             visualizer.CFrame = handle.CFrame
  379.                             visualizer.CastShadow = false
  380.                             visualizer.Name = math.random()
  381.                         elseif config == "Reset" then
  382.                             visualizer.Shape = Enum.PartType.Ball
  383.                             visualizer.Material = Enum.Material.ForceField
  384.                             visualizer.Color = Color3.new(1, 0.933333, 0)
  385.                             visualizer.Transparency = VisualizerTransparencyAmount
  386.                             visualizer.Size = Vector3.new(reach,reach,reach)
  387.                             visualizer.CFrame = handle.CFrame
  388.                             visualizer.CastShadow = false
  389.                             visualizer.Name = math.random()
  390.                         elseif config == "Blizzy Config" then
  391.                             visualizer.Shape = Enum.PartType.Ball
  392.                             visualizer.Material = Enum.Material.SmoothPlastic
  393.                             visualizer.Color = Color3.new(0.00784314, 0.454902, 1)
  394.                             visualizer.Transparency = 0.4
  395.                             visualizer.Size = Vector3.new(reach,reach,reach)
  396.                             visualizer.CFrame = handle.CFrame
  397.                             visualizer.CastShadow = false
  398.                             visualizer.Name = math.random()
  399.                         elseif config == "Sebs Config" then
  400.                             visualizer.Shape = Enum.PartType.Ball
  401.                             visualizer.Material = Enum.Material.Asphalt
  402.                             visualizer.Color = Color3.new(0.105882, 0.745098, 0.0313725)
  403.                             visualizer.Transparency = 0.8
  404.                             visualizer.Size = Vector3.new(reach,reach,reach)
  405.                             visualizer.CFrame = handle.CFrame
  406.                             visualizer.CastShadow = false
  407.                             visualizer.Name = math.random()
  408.                         end
  409.                         for _,v in pairs(game.Players:GetPlayers()) do
  410.                             local hrp = v.Character and v.Character:FindFirstChild("HumanoidRootPart")
  411.                             if hrp and handle then
  412.                                 local mag = (hrp.Position-handle.Position).magnitude
  413.                                 if mag <= reach then
  414.                                     onHit(hrp,handle)
  415.                                 end
  416.                             end
  417.                         end
  418.                     elseif reachType == "Block" then
  419.                         local origin = (handle.CFrame*CFrame.new(0,0,-2)).p
  420.                         local ray = Ray.new(origin,handle.CFrame.lookVector*-reach)
  421.                         local p,pos = workspace:FindPartOnRayWithWhitelist(ray,getWhiteList())
  422.                         visualizer.Shape = Enum.PartType.Block
  423.                         visualizer.Size = Vector3.new(reach,reach,reach)
  424.                         visualizer.CFrame = handle.CFrame
  425.                         visualizer.CastShadow = false
  426.                         visualizer.Name = math.random()
  427.                         visualizer.Color = Color3.new(colorrvalue,colorgvalue,colorbvalue)
  428.                         visualizer.Transparency = VisualizerTransparencyAmount
  429.                         if config == "CWare Config" then
  430.                             visualizer.Shape = Enum.PartType.Block
  431.                             visualizer.Material = Enum.Material.Plastic
  432.                             visualizer.Color = Color3.new(1, 0, 0)
  433.                             visualizer.Transparency = 0
  434.                             visualizer.Size = Vector3.new(reach,reach,reach)
  435.                             visualizer.CFrame = handle.CFrame
  436.                             visualizer.CastShadow = false
  437.                             visualizer.Name = math.random()
  438.                         elseif config == "Reset" then
  439.                             visualizer.Shape = Enum.PartType.Block
  440.                             visualizer.Material = Enum.Material.ForceField
  441.                             visualizer.Color = Color3.new(0.984314, 1, 0)
  442.                             visualizer.Transparency = VisualizerTransparencyAmount
  443.                             visualizer.Size = Vector3.new(reach,reach,reach)
  444.                             visualizer.CFrame = handle.CFrame
  445.                             visualizer.CastShadow = false
  446.                             visualizer.Name = math.random()
  447.                         elseif config == "Blizzy Config" then
  448.                             visualizer.Shape = Enum.PartType.Block
  449.                             visualizer.Material = Enum.Material.SmoothPlastic
  450.                             visualizer.Color = Color3.new(0.00784314, 0.454902, 1)
  451.                             visualizer.Transparency = 0.4
  452.                             visualizer.Size = Vector3.new(reach,reach,reach)
  453.                             visualizer.CFrame = handle.CFrame
  454.                             visualizer.CastShadow = false
  455.                             visualizer.Name = math.random()
  456.                         elseif config == "Sebs Config" then
  457.                             visualizer.Shape = Enum.PartType.Block
  458.                             visualizer.Material = Enum.Material.Asphalt
  459.                             visualizer.Color = Color3.new(0.105882, 0.745098, 0.0313725)
  460.                             visualizer.Transparency = 0.8
  461.                             visualizer.Size = Vector3.new(reach,reach,reach)
  462.                             visualizer.CFrame = handle.CFrame
  463.                             visualizer.CastShadow = false
  464.                             visualizer.Name = math.random()
  465.                         end
  466.                         if p then
  467.                             onHit(p,handle)
  468.                         else
  469.                             for _,v in pairs(handle:GetTouchingParts()) do
  470.                                 onHit(v,handle)
  471.                             end
  472.                         end
  473.  
  474.  
  475.                     end
  476.                 end
  477.             end
  478.         end
  479.     end)
  480. end)
  481.  
  482. CLOSE.Name = "CLOSE"
  483. CLOSE.Parent = main
  484. CLOSE.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  485. CLOSE.Position = UDim2.new(0.606271803, 0, 0.867924511, 0)
  486. CLOSE.Size = UDim2.new(0, 113, 0, 28)
  487. CLOSE.Font = Enum.Font.SourceSans
  488. CLOSE.Text = "CLOSE"
  489. CLOSE.TextColor3 = Color3.fromRGB(255, 255, 255)
  490. CLOSE.TextScaled = true
  491. CLOSE.TextSize = 14.000
  492. CLOSE.TextWrapped = true
  493. CLOSE.MouseButton1Down:connect(function()
  494.     main.Visible = false
  495.     openmain.Visible = true
  496. end)
  497.  
  498. AHD.Name = "AHD"
  499. AHD.Parent = main
  500. AHD.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  501. AHD.BorderColor3 = Color3.fromRGB(255, 0, 255)
  502. AHD.BorderSizePixel = 5
  503. AHD.Position = UDim2.new(0.543554008, 0, 0.301886797, 0)
  504. AHD.Size = UDim2.new(0, 113, 0, 42)
  505. AHD.Font = Enum.Font.SourceSans
  506. AHD.Text = "A Hero's Destiny GUI"
  507. AHD.TextColor3 = Color3.fromRGB(0, 0, 0)
  508. AHD.TextScaled = true
  509. AHD.TextSize = 14.000
  510. AHD.TextWrapped = true
  511. AHD.MouseButton1Down:connect(function()
  512.     loadstring(game:HttpGet("https://www.assasine.com/Scripts/A%20Hero's%20Destiny.lua", true))()
  513. end)
  514.  
  515. TOH.Name = "TOH"
  516. TOH.Parent = main
  517. TOH.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  518. TOH.BorderColor3 = Color3.fromRGB(255, 255, 255)
  519. TOH.BorderSizePixel = 5
  520. TOH.Position = UDim2.new(0.0278745648, 0, 0.301886797, 0)
  521. TOH.Size = UDim2.new(0, 113, 0, 42)
  522. TOH.Font = Enum.Font.SourceSans
  523. TOH.Text = "Tower Of Hell GUI"
  524. TOH.TextColor3 = Color3.fromRGB(0, 0, 0)
  525. TOH.TextScaled = true
  526. TOH.TextSize = 14.000
  527. TOH.TextWrapped = true
  528. TOH.MouseButton1Down:connect(function()
  529.     local ScreenGui = Instance.new("ScreenGui")
  530.     local main = Instance.new("Frame")
  531.     local TextLabel = Instance.new("TextLabel")
  532.     local Frame = Instance.new("Frame")
  533.     local INFJUMP = Instance.new("TextButton")
  534.     local TextLabel_2 = Instance.new("TextLabel")
  535.  
  536.     --Properties:
  537.  
  538.     ScreenGui.Parent = game.CoreGui
  539.  
  540.     main.Name = "main"
  541.     main.Parent = ScreenGui
  542.     main.Active = true
  543.     main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  544.     main.BorderSizePixel = 0
  545.     main.Position = UDim2.new(0.119258665, 0, 0, 0)
  546.     main.Size = UDim2.new(0, 146, 0, 28)
  547.     main.Active = true
  548.     main.Draggable = true
  549.  
  550.     TextLabel.Parent = main
  551.     TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  552.     TextLabel.BorderSizePixel = 0
  553.     TextLabel.Size = UDim2.new(0, 146, 0, 28)
  554.     TextLabel.Font = Enum.Font.SciFi
  555.     TextLabel.Text = "Misc"
  556.     TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  557.     TextLabel.TextSize = 17.000
  558.     TextLabel.TextWrapped = true
  559.  
  560.     Frame.Parent = main
  561.     Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  562.     Frame.BorderSizePixel = 0
  563.     Frame.Position = UDim2.new(0, 0, 1, 0)
  564.     Frame.Size = UDim2.new(0, 146, 0, 61)
  565.  
  566.     INFJUMP.Name = "INFJUMP"
  567.     INFJUMP.Parent = main
  568.     INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  569.     INFJUMP.BorderSizePixel = 0
  570.     INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  571.     INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  572.     INFJUMP.Font = Enum.Font.SourceSans
  573.     INFJUMP.Text = ""
  574.     INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  575.     INFJUMP.TextSize = 14.000
  576.     INFJUMP.MouseButton1Down:connect(function()
  577.         local Player = game:GetService'Players'.LocalPlayer;
  578.         local UIS = game:GetService'UserInputService';
  579.  
  580.         _G.JumpHeight = 50;
  581.  
  582.         function Action(Object, Function) if Object ~= nil then Function(Object); end end
  583.  
  584.         UIS.InputBegan:connect(function(UserInput)
  585.             if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  586.                 Action(Player.Character.Humanoid, function(self)
  587.                     if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  588.                         Action(self.Parent.HumanoidRootPart, function(self)
  589.                             self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  590.                         end)
  591.                     end
  592.                 end)
  593.             end
  594.         end)
  595.     end)
  596.  
  597.     TextLabel_2.Parent = main
  598.     TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  599.     TextLabel_2.BorderSizePixel = 0
  600.     TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  601.     TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  602.     TextLabel_2.Font = Enum.Font.SciFi
  603.     TextLabel_2.Text = "Inf jump"
  604.     TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  605.     TextLabel_2.TextSize = 17.000
  606.     TextLabel_2.TextWrapped = true
  607.  
  608.     -- Scripts:
  609.  
  610.     local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  611.         local script = Instance.new('LocalScript', INFJUMP)
  612.  
  613.         function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  614.  
  615.         counter = 0
  616.  
  617.         while wait(0.1)do
  618.             script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  619.  
  620.             counter = counter + 0.01
  621.         end
  622.     end
  623.     coroutine.wrap(TKDWQ_fake_script)()
  624. end)
  625.  
  626. TextLabel_2.Parent = main
  627. TextLabel_2.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  628. TextLabel_2.Size = UDim2.new(0, 287, 0, 50)
  629. TextLabel_2.Font = Enum.Font.SciFi
  630. TextLabel_2.Text = "KScripts Script Hub"
  631. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  632. TextLabel_2.TextScaled = true
  633. TextLabel_2.TextSize = 14.000
  634. TextLabel_2.TextWrapped = truelocal ScreenGui = Instance.new("ScreenGui")
  635. local openmain = Instance.new("Frame")
  636. local open = Instance.new("TextButton")
  637. local main = Instance.new("Frame")
  638. local TextLabel = Instance.new("TextLabel")
  639. local SKYWARS = Instance.new("TextButton")
  640. local SF = Instance.new("TextButton")
  641. local CLOSE = Instance.new("TextButton")
  642. local AHD = Instance.new("TextButton")
  643. local TOH = Instance.new("TextButton")
  644. local TextLabel_2 = Instance.new("TextLabel")
  645.  
  646. --Properties:
  647.  
  648. ScreenGui.Parent = game.CoreGui
  649.  
  650. openmain.Name = "openmain"
  651. openmain.Parent = ScreenGui
  652. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  653. openmain.Position = UDim2.new(0.841968954, 0, 0.946869075, 0)
  654. openmain.Size = UDim2.new(0, 113, 0, 28)
  655.  
  656. open.Name = "open"
  657. open.Parent = openmain
  658. open.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  659. open.Position = UDim2.new(-0.0707965493, 0, 9.53674316e-07, 0)
  660. open.Size = UDim2.new(0, 113, 0, 28)
  661. open.Font = Enum.Font.SourceSans
  662. open.Text = "OPEN"
  663. open.TextColor3 = Color3.fromRGB(170, 0, 0)
  664. open.TextScaled = true
  665. open.TextSize = 14.000
  666. open.TextWrapped = true
  667. openmain.Visible = false
  668. main.Visible = true
  669.  
  670. main.Name = "main"
  671. main.Parent = ScreenGui
  672. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  673. main.Position = UDim2.new(0.607512951, 0, 0.571157515, 0)
  674. main.Size = UDim2.new(0, 287, 0, 212)
  675.  
  676. TextLabel.Parent = main
  677. TextLabel.BackgroundColor3 = Color3.fromRGB(54, 66, 53)
  678. TextLabel.Position = UDim2.new(0, 0, 0.816037714, 0)
  679. TextLabel.Size = UDim2.new(0, 142, 0, 37)
  680. TextLabel.Font = Enum.Font.SpecialElite
  681. TextLabel.Text = "USE AT YOUR OWN RISK."
  682. TextLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  683. TextLabel.TextScaled = true
  684. TextLabel.TextSize = 14.000
  685. TextLabel.TextWrapped = true
  686.  
  687. SKYWARS.Name = "SKYWARS"
  688. SKYWARS.Parent = main
  689. SKYWARS.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  690. SKYWARS.BorderColor3 = Color3.fromRGB(255, 170, 255)
  691. SKYWARS.BorderSizePixel = 5
  692. SKYWARS.Position = UDim2.new(0.543554008, 0, 0.580188692, 0)
  693. SKYWARS.Size = UDim2.new(0, 113, 0, 44)
  694. SKYWARS.Font = Enum.Font.SourceSans
  695. SKYWARS.Text = "Skywars GUI"
  696. SKYWARS.TextColor3 = Color3.fromRGB(255, 255, 255)
  697. SKYWARS.TextScaled = true
  698. SKYWARS.TextSize = 14.000
  699. SKYWARS.TextWrapped = true
  700. SKYWARS.MouseButton1Down:connect(function()
  701.     loadstring(game:HttpGet("https://raw.githubusercontent.com/2dgeneralspam1/scripts-and-stuff/master/scripts/Loadstring9VHD6Wmyi82n", true))()
  702. end)
  703.  
  704. SF.Name = "SF"
  705. SF.Parent = main
  706. SF.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  707. SF.BorderColor3 = Color3.fromRGB(85, 255, 255)
  708. SF.BorderSizePixel = 5
  709. SF.Position = UDim2.new(0.0278745648, 0, 0.580188692, 0)
  710. SF.Size = UDim2.new(0, 113, 0, 44)
  711. SF.Font = Enum.Font.SourceSans
  712. SF.Text = "Every Sword Fighting game (REACH GUI)"
  713. SF.TextColor3 = Color3.fromRGB(0, 0, 0)
  714. SF.TextScaled = true
  715. SF.TextSize = 14.000
  716. SF.TextWrapped = true
  717. SF.MouseButton1Down:connect(function()
  718.     local Players = game:GetService("Players")
  719.     local LocalPlayer = Players.LocalPlayer or game:GetService("Players"):GetPlayerFromCharacter(Players.LocalPlayer.Character)
  720.     local Character = LocalPlayer.Character or LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Parent
  721.  
  722.     local MT = getrawmetatable(game)
  723.     local OldIndex = MT. __index
  724.     local OldNamecall = MT.__namecall
  725.  
  726.     setreadonly(MT, false)
  727.     MT.__index = newcclosure(function(H, HP, T, D) --Bypasses some anti FTI checks. (uBlubble, Xelvidant, etc.)
  728.         if not checkcaller() and getnamecallmethod() then
  729.             if tostring(H) == "Humanoid" and tostring(HP) == "Health" then
  730.                 return 0
  731.             end
  732.             if tostring(T) == "Position" and tostring(D) == "Magnitude" then
  733.                 return 0
  734.             end
  735.         end
  736.         return OldIndex(H, HP)
  737.     end)
  738.  
  739.     local StarterGui = game:GetService("StarterGui")
  740.     local DevConsoleHook --Bypasses all dev console disablers.
  741.     DevConsoleHook = hookfunc(StarterGui.SetCore, newcclosure(function(Self, ...)
  742.         local Args = table.pack(...)
  743.         if Self == StarterGui then
  744.             if Args[1] == "DevConsoleVisible" then
  745.                 Args[1] = nil
  746.             end
  747.         end
  748.     end))
  749.  
  750.     --Bypasses script execution.
  751.     for _,v in next, getconnections(game:GetService("LogService").MessageOut) do
  752.         v:Disable()
  753.     end
  754.     for _,v in next, getconnections(game:GetService("ScriptContext").Error) do
  755.         v:Disable()
  756.     end
  757.  
  758.     game:GetService("ScriptContext"):SetTimeout(0.1)
  759.     setreadonly(MT, true)
  760.  
  761.     local UNIATTEMPT = true
  762.     local VisualizerTransparencyAmount = 0.4
  763.     local UIS = game:GetService("UserInputService")
  764.  
  765.     -----------------------------
  766.     --bypass 2
  767.     local customtheme = "Dark"
  768.     local reachsize = 5
  769.     local dmgEnabled = true
  770.     local multiplier = 0
  771.     local visualizerEnabled
  772.     local reachType = "Sphere"
  773.  
  774.     local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  775.     local UI = Material.Load({
  776.         Title = "Sebs Darkside",
  777.         Style = 0,
  778.         SizeX = 471,
  779.         SizeY = 269,
  780.         Theme = customtheme
  781.     })
  782.     --page bypass stuffj
  783.  
  784.     UIS.InputBegan:Connect(function(input, gameProcessedEvent)
  785.         if input.KeyCode == Enum.KeyCode.X then
  786.             game:GetService("CoreGui")["Sebs Darkside"].Enabled = not game:GetService("CoreGui")["Sebs Darkside"].Enabled
  787.         end
  788.     end)
  789.  
  790.     --new page which is gonna be circle reach & stuffghj
  791.  
  792.     local Page2 = UI.New({
  793.         Title = "Reach/Circle"
  794.     })
  795.     local Page3 = UI.New({
  796.         Title = "Auto Clicker"
  797.     })
  798.     local Page4 = UI.New({
  799.         Title = "Themes"
  800.     })
  801.  
  802.     local Page5 = UI.New({
  803.         Title = "Visuaizer"
  804.     })
  805.  
  806.  
  807.  
  808.     local ThemePage = Page4.Dropdown({
  809.         Text = "Themes",
  810.         Callback = function(value)
  811.             customtheme = value
  812.             Text = customtheme
  813.         end,
  814.         Options = {"Dark", "Light", "Mocha", "Aqua", "Jester"}
  815.     })
  816.     local ac_on
  817.     local ac_off
  818.     local AcOnText = Page3.TextField({
  819.         Text = "Keybind for autoclicker on",
  820.         Callback = function(value)
  821.             print(ac_on)
  822.             ac_on = value
  823.         end,
  824.     })
  825.     local AcOffText = Page3.TextField({
  826.         Text = "Keybind for autoclicker off ",
  827.         Callback = function(value)
  828.             print(ac_off)
  829.             ac_off = value
  830.         end,
  831.     })
  832.  
  833.     local Mouse = game.Players.LocalPlayer:GetMouse()
  834.     Mouse.KeyDown:Connect(function(key)
  835.         if key == ac_on then
  836.             _G.AutoClicker = true
  837.             while _G.AutoClicker do
  838.                 wait()
  839.                 pcall(function()
  840.                     local Sword = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Tool'
  841.                     Sword:Activate()
  842.                 end)
  843.             end
  844.         end
  845.     end)
  846.     local Mouse = game.Players.LocalPlayer:GetMouse()
  847.     Mouse.KeyDown:Connect(function(key)
  848.         if key == ac_off then
  849.             _G.AutoClicker = false
  850.             while _G.AutoClicker do
  851.                 wait()
  852.                 pcall(function()
  853.                     local Sword = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Tool'
  854.                     Sword:Activate()
  855.                 end)
  856.             end
  857.         end
  858.     end)
  859.  
  860.     local CircleSize = Page2.Slider({
  861.         Text = "Circle Size",
  862.         Callback = function(value)
  863.             reachsize = value
  864.             reachsize = tonumber(value)
  865.         end,
  866.         Min = 0,
  867.         Max = 50,
  868.         Def = 4
  869.     })
  870.     local sparemultiplier = 1
  871.     local dmgEnabled = Page2.Toggle({
  872.         Text = "Enable DMG",
  873.         Callback = function(value)
  874.             dmgEnabled = value
  875.         end,
  876.     })
  877.     local dmgSlider = Page2.Slider({
  878.         Text = "DMG Amount",
  879.         Callback = function(value)
  880.             multiplier = value
  881.             multiplier = tonumber(value)
  882.             sparemultiplier = value
  883.             sparemultiplier = tonumber(value)
  884.         end,
  885.         Min = 0.4,
  886.         Max = 20,
  887.         Def = 1,
  888.  
  889.     })
  890.     local ShapeDropdown = Page5.Dropdown({
  891.         Text = "Visualizer Shape",
  892.         Callback = function(value)
  893.             reachType = value
  894.         end,
  895.         Options = {"Sphere", "Block"}
  896.     })
  897.     local ve = Page5.Toggle({
  898.         Text = "Visualizer",
  899.         Callback = function(value)
  900.             visualizerEnabled = value
  901.         end,
  902.     })
  903.  
  904.  
  905.     local visualizer = Instance.new("Part")
  906.  
  907.     visualizer.Color = Color3.new(1, 0.968627, 0)
  908.     visualizer.Transparency = VisualizerTransparencyAmount
  909.     visualizer.Anchored = true
  910.     visualizer.CanCollide = false
  911.     visualizer.CastShadow = false
  912.     visualizer.Size = Vector3.new(0.5,0.5,0.5)
  913.     visualizer.BottomSurface = Enum.SurfaceType.Glue
  914.     visualizer.TopSurface = Enum.SurfaceType.Glue
  915.     local TweenService = game:GetService("TweenService")
  916.     local part = visualizer
  917.     local TweeningInformation = TweenInfo.new(
  918.         1,
  919.         Enum.EasingStyle.Quad,
  920.         Enum.EasingDirection.Out,
  921.         753475938457843579348573,
  922.         true,
  923.         0
  924.     )
  925.  
  926.     local PartProperties = {
  927.         Color = Color3.fromRGB(255,0,0)
  928.     }
  929.  
  930.     local Tween = TweenService:Create(part,TweeningInformation,PartProperties)
  931.     Tween:Play()
  932.     local Red = Color3.new(1, 0, 0.0156863)
  933.     local Blue = Color3.new(0, 0.180392, 1)
  934.     local Black = Color3.new(0, 0, 0)
  935.     local White = Color3.new(1, 1, 1)
  936.     local config = "Reset"
  937.     local colorrvalue = 0
  938.     local colorgvalue = 0
  939.     local colorbvalue = 0
  940.  
  941.  
  942.  
  943.     local VConfigs = Page5.Dropdown({
  944.         Text = "Configs For Visualizer",
  945.         Callback = function(value)
  946.             config = value
  947.         end,
  948.         Options = {"Sebs Config", "CWare Config", "Blizzy Config", "Reset"}
  949.     })
  950.     --fti script
  951.     local plr = game.Players.LocalPlayer
  952.     local function onHit(hit,handle)
  953.         local victim = hit.Parent:FindFirstChildOfClass("Humanoid")
  954.         if victim and victim.Parent.Name ~= game.Players.LocalPlayer.Name then
  955.             if dmgEnabled then
  956.  
  957.                 for _,v in pairs(hit.Parent:GetChildren()) do
  958.                     if v:IsA("BasePart") then
  959.                         for i = 1, multiplier do
  960.                             firetouchinterest(v,handle,0)
  961.                             firetouchinterest(v,handle,1)
  962.                             firetouchinterest(v,handle,0)
  963.                         end
  964.                     end
  965.                 end
  966.             else
  967.                 firetouchinterest(hit,handle,0)
  968.                 firetouchinterest(hit,handle,1)
  969.             end
  970.         end
  971.     end
  972.  
  973.     local function getWhiteList()
  974.         local wl = {}
  975.         for _,v in pairs(game.Players:GetPlayers()) do
  976.             if v ~= plr then
  977.                 local char = v.Character
  978.                 if char then
  979.                     for _,q in pairs(char:GetChildren()) do
  980.                         if q:IsA("BasePart") then
  981.                             table.insert(wl,q)
  982.                         end
  983.                     end
  984.                 end
  985.             end
  986.         end
  987.         return wl
  988.     end
  989.  
  990.     game:GetService("RunService").RenderStepped:connect(function()
  991.         local s = plr.Character and plr.Character:FindFirstChildOfClass("Tool")
  992.         if not s then visualizer.Parent = nil end
  993.         if s then
  994.             local handle = s:FindFirstChild("Handle") or s:FindFirstChildOfClass("Part")
  995.             if handle then
  996.                 if visualizerEnabled then
  997.                     visualizer.Parent = workspace
  998.                 else
  999.                     visualizer.Parent = nil
  1000.                 end
  1001.                 local reach = tonumber(reachsize)
  1002.  
  1003.                 if reach then
  1004.                     if reachType == "Sphere" then
  1005.                         if config == "CWare Config" then
  1006.                             visualizer.Shape = Enum.PartType.Ball
  1007.                             visualizer.Material = Enum.Material.Plastic
  1008.                             visualizer.Color = Color3.new(1, 0, 0)
  1009.                             visualizer.Transparency = 0.005459344392
  1010.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1011.                             visualizer.CFrame = handle.CFrame
  1012.                             visualizer.CastShadow = false
  1013.                             visualizer.Name = math.random()
  1014.                         elseif config == "Reset" then
  1015.                             visualizer.Shape = Enum.PartType.Ball
  1016.                             visualizer.Material = Enum.Material.ForceField
  1017.                             visualizer.Color = Color3.new(1, 0.933333, 0)
  1018.                             visualizer.Transparency = VisualizerTransparencyAmount
  1019.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1020.                             visualizer.CFrame = handle.CFrame
  1021.                             visualizer.CastShadow = false
  1022.                             visualizer.Name = math.random()
  1023.                         elseif config == "Blizzy Config" then
  1024.                             visualizer.Shape = Enum.PartType.Ball
  1025.                             visualizer.Material = Enum.Material.SmoothPlastic
  1026.                             visualizer.Color = Color3.new(0.00784314, 0.454902, 1)
  1027.                             visualizer.Transparency = 0.4
  1028.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1029.                             visualizer.CFrame = handle.CFrame
  1030.                             visualizer.CastShadow = false
  1031.                             visualizer.Name = math.random()
  1032.                         elseif config == "Sebs Config" then
  1033.                             visualizer.Shape = Enum.PartType.Ball
  1034.                             visualizer.Material = Enum.Material.Asphalt
  1035.                             visualizer.Color = Color3.new(0.105882, 0.745098, 0.0313725)
  1036.                             visualizer.Transparency = 0.8
  1037.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1038.                             visualizer.CFrame = handle.CFrame
  1039.                             visualizer.CastShadow = false
  1040.                             visualizer.Name = math.random()
  1041.                         end
  1042.                         for _,v in pairs(game.Players:GetPlayers()) do
  1043.                             local hrp = v.Character and v.Character:FindFirstChild("HumanoidRootPart")
  1044.                             if hrp and handle then
  1045.                                 local mag = (hrp.Position-handle.Position).magnitude
  1046.                                 if mag <= reach then
  1047.                                     onHit(hrp,handle)
  1048.                                 end
  1049.                             end
  1050.                         end
  1051.                     elseif reachType == "Block" then
  1052.                         local origin = (handle.CFrame*CFrame.new(0,0,-2)).p
  1053.                         local ray = Ray.new(origin,handle.CFrame.lookVector*-reach)
  1054.                         local p,pos = workspace:FindPartOnRayWithWhitelist(ray,getWhiteList())
  1055.                         visualizer.Shape = Enum.PartType.Block
  1056.                         visualizer.Size = Vector3.new(reach,reach,reach)
  1057.                         visualizer.CFrame = handle.CFrame
  1058.                         visualizer.CastShadow = false
  1059.                         visualizer.Name = math.random()
  1060.                         visualizer.Color = Color3.new(colorrvalue,colorgvalue,colorbvalue)
  1061.                         visualizer.Transparency = VisualizerTransparencyAmount
  1062.                         if config == "CWare Config" then
  1063.                             visualizer.Shape = Enum.PartType.Block
  1064.                             visualizer.Material = Enum.Material.Plastic
  1065.                             visualizer.Color = Color3.new(1, 0, 0)
  1066.                             visualizer.Transparency = 0
  1067.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1068.                             visualizer.CFrame = handle.CFrame
  1069.                             visualizer.CastShadow = false
  1070.                             visualizer.Name = math.random()
  1071.                         elseif config == "Reset" then
  1072.                             visualizer.Shape = Enum.PartType.Block
  1073.                             visualizer.Material = Enum.Material.ForceField
  1074.                             visualizer.Color = Color3.new(0.984314, 1, 0)
  1075.                             visualizer.Transparency = VisualizerTransparencyAmount
  1076.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1077.                             visualizer.CFrame = handle.CFrame
  1078.                             visualizer.CastShadow = false
  1079.                             visualizer.Name = math.random()
  1080.                         elseif config == "Blizzy Config" then
  1081.                             visualizer.Shape = Enum.PartType.Block
  1082.                             visualizer.Material = Enum.Material.SmoothPlastic
  1083.                             visualizer.Color = Color3.new(0.00784314, 0.454902, 1)
  1084.                             visualizer.Transparency = 0.4
  1085.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1086.                             visualizer.CFrame = handle.CFrame
  1087.                             visualizer.CastShadow = false
  1088.                             visualizer.Name = math.random()
  1089.                         elseif config == "Sebs Config" then
  1090.                             visualizer.Shape = Enum.PartType.Block
  1091.                             visualizer.Material = Enum.Material.Asphalt
  1092.                             visualizer.Color = Color3.new(0.105882, 0.745098, 0.0313725)
  1093.                             visualizer.Transparency = 0.8
  1094.                             visualizer.Size = Vector3.new(reach,reach,reach)
  1095.                             visualizer.CFrame = handle.CFrame
  1096.                             visualizer.CastShadow = false
  1097.                             visualizer.Name = math.random()
  1098.                         end
  1099.                         if p then
  1100.                             onHit(p,handle)
  1101.                         else
  1102.                             for _,v in pairs(handle:GetTouchingParts()) do
  1103.                                 onHit(v,handle)
  1104.                             end
  1105.                         end
  1106.  
  1107.  
  1108.                     end
  1109.                 end
  1110.             end
  1111.         end
  1112.     end)
  1113. end)
  1114.  
  1115. CLOSE.Name = "CLOSE"
  1116. CLOSE.Parent = main
  1117. CLOSE.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  1118. CLOSE.Position = UDim2.new(0.606271803, 0, 0.867924511, 0)
  1119. CLOSE.Size = UDim2.new(0, 113, 0, 28)
  1120. CLOSE.Font = Enum.Font.SourceSans
  1121. CLOSE.Text = "CLOSE"
  1122. CLOSE.TextColor3 = Color3.fromRGB(255, 255, 255)
  1123. CLOSE.TextScaled = true
  1124. CLOSE.TextSize = 14.000
  1125. CLOSE.TextWrapped = true
  1126. CLOSE.MouseButton1Down:connect(function()
  1127.     main.Visible = false
  1128.     openmain.Visible = true
  1129. end)
  1130.  
  1131. AHD.Name = "AHD"
  1132. AHD.Parent = main
  1133. AHD.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  1134. AHD.BorderColor3 = Color3.fromRGB(255, 0, 255)
  1135. AHD.BorderSizePixel = 5
  1136. AHD.Position = UDim2.new(0.543554008, 0, 0.301886797, 0)
  1137. AHD.Size = UDim2.new(0, 113, 0, 42)
  1138. AHD.Font = Enum.Font.SourceSans
  1139. AHD.Text = "A Hero's Destiny GUI"
  1140. AHD.TextColor3 = Color3.fromRGB(0, 0, 0)
  1141. AHD.TextScaled = true
  1142. AHD.TextSize = 14.000
  1143. AHD.TextWrapped = true
  1144. AHD.MouseButton1Down:connect(function()
  1145.     loadstring(game:HttpGet("https://www.assasine.com/Scripts/A%20Hero's%20Destiny.lua", true))()
  1146. end)
  1147.  
  1148. TOH.Name = "TOH"
  1149. TOH.Parent = main
  1150. TOH.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  1151. TOH.BorderColor3 = Color3.fromRGB(255, 255, 255)
  1152. TOH.BorderSizePixel = 5
  1153. TOH.Position = UDim2.new(0.0278745648, 0, 0.301886797, 0)
  1154. TOH.Size = UDim2.new(0, 113, 0, 42)
  1155. TOH.Font = Enum.Font.SourceSans
  1156. TOH.Text = "Tower Of Hell GUI"
  1157. TOH.TextColor3 = Color3.fromRGB(0, 0, 0)
  1158. TOH.TextScaled = true
  1159. TOH.TextSize = 14.000
  1160. TOH.TextWrapped = true
  1161. TOH.MouseButton1Down:connect(function()
  1162.     local ScreenGui = Instance.new("ScreenGui")
  1163.     local main = Instance.new("Frame")
  1164.     local TextLabel = Instance.new("TextLabel")
  1165.     local Frame = Instance.new("Frame")
  1166.     local INFJUMP = Instance.new("TextButton")
  1167.     local TextLabel_2 = Instance.new("TextLabel")
  1168.  
  1169.     --Properties:
  1170.  
  1171.     ScreenGui.Parent = game.CoreGui
  1172.  
  1173.     main.Name = "main"
  1174.     main.Parent = ScreenGui
  1175.     main.Active = true
  1176.     main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1177.     main.BorderSizePixel = 0
  1178.     main.Position = UDim2.new(0.119258665, 0, 0, 0)
  1179.     main.Size = UDim2.new(0, 146, 0, 28)
  1180.     main.Active = true
  1181.     main.Draggable = true
  1182.  
  1183.     TextLabel.Parent = main
  1184.     TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  1185.     TextLabel.BorderSizePixel = 0
  1186.     TextLabel.Size = UDim2.new(0, 146, 0, 28)
  1187.     TextLabel.Font = Enum.Font.SciFi
  1188.     TextLabel.Text = "Misc"
  1189.     TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  1190.     TextLabel.TextSize = 17.000
  1191.     TextLabel.TextWrapped = true
  1192.  
  1193.     Frame.Parent = main
  1194.     Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  1195.     Frame.BorderSizePixel = 0
  1196.     Frame.Position = UDim2.new(0, 0, 1, 0)
  1197.     Frame.Size = UDim2.new(0, 146, 0, 61)
  1198.  
  1199.     INFJUMP.Name = "INFJUMP"
  1200.     INFJUMP.Parent = main
  1201.     INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1202.     INFJUMP.BorderSizePixel = 0
  1203.     INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  1204.     INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  1205.     INFJUMP.Font = Enum.Font.SourceSans
  1206.     INFJUMP.Text = ""
  1207.     INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  1208.     INFJUMP.TextSize = 14.000
  1209.     INFJUMP.MouseButton1Down:connect(function()
  1210.         local Player = game:GetService'Players'.LocalPlayer;
  1211.         local UIS = game:GetService'UserInputService';
  1212.  
  1213.         _G.JumpHeight = 50;
  1214.  
  1215.         function Action(Object, Function) if Object ~= nil then Function(Object); end end
  1216.  
  1217.         UIS.InputBegan:connect(function(UserInput)
  1218.             if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  1219.                 Action(Player.Character.Humanoid, function(self)
  1220.                     if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  1221.                         Action(self.Parent.HumanoidRootPart, function(self)
  1222.                             self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  1223.                         end)
  1224.                     end
  1225.                 end)
  1226.             end
  1227.         end)
  1228.     end)
  1229.  
  1230.     TextLabel_2.Parent = main
  1231.     TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  1232.     TextLabel_2.BorderSizePixel = 0
  1233.     TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  1234.     TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  1235.     TextLabel_2.Font = Enum.Font.SciFi
  1236.     TextLabel_2.Text = "Inf jump"
  1237.     TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  1238.     TextLabel_2.TextSize = 17.000
  1239.     TextLabel_2.TextWrapped = true
  1240.  
  1241.     -- Scripts:
  1242.  
  1243.     local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  1244.         local script = Instance.new('LocalScript', INFJUMP)
  1245.  
  1246.         function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  1247.  
  1248.         counter = 0
  1249.  
  1250.         while wait(0.1)do
  1251.             script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  1252.  
  1253.             counter = counter + 0.01
  1254.         end
  1255.     end
  1256.     coroutine.wrap(TKDWQ_fake_script)()
  1257. end)
  1258.  
  1259. TextLabel_2.Parent = main
  1260. TextLabel_2.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  1261. TextLabel_2.Size = UDim2.new(0, 287, 0, 50)
  1262. TextLabel_2.Font = Enum.Font.SciFi
  1263. TextLabel_2.Text = "KScripts Script Hub"
  1264. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  1265. TextLabel_2.TextScaled = true
  1266. TextLabel_2.TextSize = 14.000
  1267. TextLabel_2.TextWrapped = true
Add Comment
Please, Sign In to add comment