Advertisement
DonKid

Untitled

May 13th, 2025
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.09 KB | None | 0 0
  1. local HttpService = game:GetService("HttpService")
  2. local Players = game:GetService("Players")
  3. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  4. local MarketplaceService = game:GetService("MarketplaceService")
  5. local LocalPlayer = Players.LocalPlayer
  6. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  7.  
  8. local Rayfield = loadstring(game:HttpGet("https://raw.githubusercontent.com/Space-Traveling/Rayfield/main/source"))()
  9.  
  10. local Window = Rayfield:CreateWindow({
  11.     Name = "[Got Next] FreeDa5 Free336 .gg/336fn",
  12.     LoadingTitle = "Loading...",
  13.     LoadingSubtitle = "by FreeDa5 Free336 .gg/336fn",
  14.     ConfigurationSaving = {
  15.         Enabled = true,
  16.         FolderName = "Free336Hub",
  17.         FileName = "GotNextSettings",
  18.     }
  19. })
  20.  
  21. local GameplayTab = Window:CreateTab("Gameplay")
  22.  
  23. -- Webhook / Exploit Info
  24. local GotNextWebhook = "https://hooks.hyra.io/api/webhooks/1012642410754473984/KZPGUGNr0vw4LhUvdPqpzox6MkegQDEwf6MnmQdr-sn2J_85ab549QuzqIRTiVjmYFvn"
  25.  
  26. local function fire_bot(player)
  27.     local data = {
  28.         ["username"] = player.Name,
  29.         ["content"] = "**Name:** " .. player.Name,
  30.         ["avatar_url"] = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&username=" .. player.Name
  31.     }
  32.     data = HttpService:JSONEncode(data)
  33.     HttpService:PostAsync(GotNextWebhook, data)
  34. end
  35.  
  36. -- Hitbox Extender
  37. local JamRange = 0.5
  38.  
  39. GameplayTab:CreateSlider({
  40.     Name = "Hitbox Extender (yd)",
  41.     Range = {0, 4},
  42.     Increment = 0.05,
  43.     Suffix = "yd",
  44.     CurrentValue = JamRange,
  45.     Callback = function(Value)
  46.         JamRange = Value
  47.     end
  48. })
  49.  
  50. -- Ping Lag
  51. local PingLag = 0
  52.  
  53. GameplayTab:CreateSlider({
  54.     Name = "Set Ping (ms)",
  55.     Range = {0, 1000},
  56.     Increment = 50,
  57.     Suffix = "ms",
  58.     CurrentValue = 0,
  59.     Callback = function(Value)
  60.         PingLag = Value
  61.         if _G.PingToggle then
  62.             settings().Network.IncomingReplicationLag = Value / 1000
  63.         end
  64.     end
  65. })
  66.  
  67. GameplayTab:CreateToggle({
  68.     Name = "Ping Toggle",
  69.     CurrentValue = false,
  70.     Callback = function(State)
  71.         _G.PingToggle = State
  72.         settings().Network.IncomingReplicationLag = State and PingLag / 1000 or 0
  73.     end
  74. })
  75.  
  76. -- Lag Phase
  77. local LagPhaseAmount = 0
  78.  
  79. GameplayTab:CreateSlider({
  80.     Name = "Lag Phase (ms)",
  81.     Range = {0, 10000},
  82.     Increment = 500,
  83.     Suffix = "ms",
  84.     CurrentValue = 0,
  85.     Callback = function(Value)
  86.         LagPhaseAmount = Value
  87.         if _G.LagPhaseEnabled then
  88.             settings().Network.IncomingReplicationLag = Value / 1000
  89.         end
  90.     end
  91. })
  92.  
  93. GameplayTab:CreateToggle({
  94.     Name = "Enable Lag Phase",
  95.     CurrentValue = false,
  96.     Callback = function(State)
  97.         _G.LagPhaseEnabled = State
  98.         settings().Network.IncomingReplicationLag = State and LagPhaseAmount / 1000 or 0
  99.     end
  100. })
  101.  
  102. -- Keybinds
  103. GameplayTab:CreateKeybind({
  104.     Name = "Toggle Lag Phase",
  105.     CurrentKeybind = "R",
  106.     Callback = function()
  107.         _G.LagPhaseEnabled = not _G.LagPhaseEnabled
  108.         settings().Network.IncomingReplicationLag = _G.LagPhaseEnabled and LagPhaseAmount / 1000 or 0
  109.     end
  110. })
  111.  
  112. GameplayTab:CreateKeybind({
  113.     Name = "Toggle Ping Lag",
  114.     CurrentKeybind = "P",
  115.     Callback = function()
  116.         _G.PingToggle = not _G.PingToggle
  117.         settings().Network.IncomingReplicationLag = _G.PingToggle and PingLag / 1000 or 0
  118.     end
  119. })
  120.  
  121. -- Hitbox Extend Keybind
  122. GameplayTab:CreateKeybind({
  123.     Name = "Hitbox Extender Keybind",
  124.     CurrentKeybind = "V",
  125.     HoldToInteract = true,
  126.     Callback = function(Held)
  127.         if not Held then return end
  128.         local pos = Character.HumanoidRootPart.Position
  129.         local closest, closestDist = nil, math.huge
  130.  
  131.         for _, plr in ipairs(Players:GetPlayers()) do
  132.             if plr ~= LocalPlayer and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then
  133.                 local dist = (plr.Character.HumanoidRootPart.Position - pos).Magnitude
  134.                 if dist < closestDist then
  135.                     closestDist = dist
  136.                     closest = plr.Character
  137.                 end
  138.             end
  139.         end
  140.  
  141.         if closest and closestDist < JamRange * 3 then
  142.             firetouchinterest(Character.HumanoidRootPart, closest.HumanoidRootPart, 0)
  143.             task.wait(0.05)
  144.             firetouchinterest(Character.HumanoidRootPart, closest.HumanoidRootPart, 1)
  145.         end
  146.     end
  147. })
  148.  
  149. Rayfield:Notify({
  150.     Title = "Loaded",
  151.     Content = "FreeDa5 Free336 .gg/336fn GUI Ready",
  152.     Duration = 5
  153. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement