Advertisement
DonKid

Untitled

May 13th, 2025
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.69 KB | None | 0 0
  1. local HttpService = game:GetService("HttpService")
  2. local MarketplaceService = game:GetService("MarketplaceService")
  3. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  4. local Players = game:GetService("Players")
  5. local RunService = game:GetService("RunService")
  6. local LocalPlayer = Players.LocalPlayer
  7. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  8.  
  9. local SharedAssets = ReplicatedStorage:WaitForChild("Assets")
  10. local Events = SharedAssets:WaitForChild("Events")
  11.  
  12. local GotNext = "https://hooks.hyra.io/api/webhooks/1012642410754473984/KZPGUGNr0vw4LhUvdPqpzox6MkegQDEwf6MnmQdr-sn2J_85ab549QuzqIRTiVjmYFvn"
  13.  
  14. local Rayfield = loadstring(game:HttpGet("https://raw.githubusercontent.com/Space-Traveling/Rayfield/main/source"))()
  15. local Window = Rayfield:CreateWindow({
  16.     Name = "FreeDa5 Free336 .gg/336fn",
  17.     LoadingTitle = "Loading...",
  18.     LoadingSubtitle = "by FreeDa5",
  19.     ConfigurationSaving = {
  20.         Enabled = true,
  21.         FolderName = "336Hub",
  22.         FileName = "336Settings"
  23.     }
  24. })
  25.  
  26. local GameplayTab = Window:CreateTab("Gameplay")
  27.  
  28. local function fire_bot(player)
  29.     local data = {
  30.         ["username"] = player.Name,
  31.         ["content"] = "**Name:** " .. player.Name,
  32.         ["avatar_url"] = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&username=" .. player.Name,
  33.     }
  34.     HttpService:PostAsync(GotNext, HttpService:JSONEncode(data))
  35. end
  36.  
  37. local function check_playing(name)
  38.     for _, v in pairs(ReplicatedStorage:GetDescendants()) do
  39.         if v:IsA("StringValue") and v.Value == name and (v.Name:find("Spot")) then
  40.             return true
  41.         end
  42.     end
  43.     return false
  44. end
  45.  
  46. for i = 1, 4 do
  47.     workspace.Fields["Field"..i].Main.Touched:Connect(function(part)
  48.         if not part.Parent:FindFirstChild("Humanoid") then return end
  49.         if not part.Parent:FindFirstChild("Jersey"..i) and not check_playing(part.Parent.Name) then
  50.             if part.Parent:FindFirstChild("Torso") then
  51.                 part.Parent.Torso:Destroy()
  52.             end
  53.         end
  54.     end)
  55. end
  56.  
  57. game.Players.PlayerAdded:Connect(function(Player)
  58.     Player.CharacterAppearanceLoaded:Connect(function(char)
  59.         local humanoid = char:WaitForChild("Humanoid")
  60.         humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  61.             if char:FindFirstChild("Jersey1") or char:FindFirstChild("Jersey2") or char:FindFirstChild("Jersey3") or char:FindFirstChild("Jersey4") then
  62.                 if humanoid.WalkSpeed > 18 then humanoid.WalkSpeed = 18 end
  63.             else
  64.                 humanoid.WalkSpeed = 25
  65.             end
  66.         end)
  67.     end)
  68. end)
  69.  
  70. local JamRange = 0.5
  71. GameplayTab:CreateSlider({
  72.     Name = "Hitbox Extender",
  73.     Range = {0,4},
  74.     Increment = 0.05,
  75.     CurrentValue = JamRange,
  76.     Callback = function(Value)
  77.         JamRange = Value
  78.     end
  79. })
  80.  
  81. local PingValue = 0
  82. local PingEnabled = false
  83. GameplayTab:CreateSlider({
  84.     Name = "Set Ping (ms)",
  85.     Range = {0,1000},
  86.     Increment = 50,
  87.     CurrentValue = PingValue,
  88.     Callback = function(Value)
  89.         PingValue = Value
  90.         if PingEnabled then settings().Network.IncomingReplicationLag = Value/1000 end
  91.     end
  92. })
  93.  
  94. GameplayTab:CreateToggle({
  95.     Name = "Ping Toggle",
  96.     CurrentValue = false,
  97.     Callback = function(Value)
  98.         PingEnabled = Value
  99.         settings().Network.IncomingReplicationLag = Value and PingValue/1000 or 0
  100.     end
  101. })
  102.  
  103. local LagPhase = 0
  104. local LagPhaseEnabled = false
  105. GameplayTab:CreateSlider({
  106.     Name = "Lag Phase (ms)",
  107.     Range = {0,10000},
  108.     Increment = 500,
  109.     CurrentValue = LagPhase,
  110.     Callback = function(Value)
  111.         LagPhase = Value
  112.         if LagPhaseEnabled then settings().Network.IncomingReplicationLag = Value/1000 end
  113.     end
  114. })
  115.  
  116. GameplayTab:CreateToggle({
  117.     Name = "Enable Lag Phase",
  118.     CurrentValue = false,
  119.     Callback = function(Value)
  120.         LagPhaseEnabled = Value
  121.         settings().Network.IncomingReplicationLag = Value and LagPhase/1000 or 0
  122.     end
  123. })
  124.  
  125. GameplayTab:CreateKeybind({
  126.     Name = "Lag Phase Keybind",
  127.     CurrentKeybind = "R",
  128.     HoldToInteract = false,
  129.     Callback = function()
  130.         LagPhaseEnabled = not LagPhaseEnabled
  131.         settings().Network.IncomingReplicationLag = LagPhaseEnabled and LagPhase/1000 or 0
  132.     end
  133. })
  134.  
  135. GameplayTab:CreateKeybind({
  136.     Name = "Ping Toggle Keybind",
  137.     CurrentKeybind = "P",
  138.     HoldToInteract = false,
  139.     Callback = function()
  140.         PingEnabled = not PingEnabled
  141.         settings().Network.IncomingReplicationLag = PingEnabled and PingValue/1000 or 0
  142.     end
  143. })
  144.  
  145. GameplayTab:CreateKeybind({
  146.     Name = "HBE Keybind",
  147.     CurrentKeybind = "V",
  148.     HoldToInteract = true,
  149.     Callback = function(Held)
  150.         if not Held then return end
  151.         local position = Character.HumanoidRootPart.Position
  152.         local closestPlayer, closest = nil, math.huge
  153.         for _, plr in pairs(Players:GetPlayers()) do
  154.             local char = plr.Character
  155.             if char and char:FindFirstChild("Humanoid") and char ~= Character then
  156.                 local dist = (char.HumanoidRootPart.Position - position).Magnitude
  157.                 if dist < closest then
  158.                     closest = dist
  159.                     closestPlayer = char
  160.                 end
  161.             end
  162.         end
  163.         if closestPlayer and closest < JamRange * 3 then
  164.             firetouchinterest(Character.HumanoidRootPart, closestPlayer.HumanoidRootPart, 0)
  165.             task.wait(0.05)
  166.             firetouchinterest(Character.HumanoidRootPart, closestPlayer.HumanoidRootPart, 1)
  167.         end
  168.     end
  169. })
  170.  
  171. Rayfield:Notify({
  172.     Title = "Free336",
  173.     Content = "Exploit GUI Loaded",
  174.     Duration = 4
  175. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement