Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local HttpService = game:GetService("HttpService")
- local Players = game:GetService("Players")
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- local MarketplaceService = game:GetService("MarketplaceService")
- local LocalPlayer = Players.LocalPlayer
- local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
- local Rayfield = loadstring(game:HttpGet("https://raw.githubusercontent.com/Space-Traveling/Rayfield/main/source"))()
- local Window = Rayfield:CreateWindow({
- Name = "[Got Next] FreeDa5 Free336 .gg/336fn",
- LoadingTitle = "Loading...",
- LoadingSubtitle = "by FreeDa5 Free336 .gg/336fn",
- ConfigurationSaving = {
- Enabled = true,
- FolderName = "Free336Hub",
- FileName = "GotNextSettings",
- }
- })
- local GameplayTab = Window:CreateTab("Gameplay")
- -- Webhook / Exploit Info
- local GotNextWebhook = "https://hooks.hyra.io/api/webhooks/1012642410754473984/KZPGUGNr0vw4LhUvdPqpzox6MkegQDEwf6MnmQdr-sn2J_85ab549QuzqIRTiVjmYFvn"
- local function fire_bot(player)
- local data = {
- ["username"] = player.Name,
- ["content"] = "**Name:** " .. player.Name,
- ["avatar_url"] = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&username=" .. player.Name
- }
- data = HttpService:JSONEncode(data)
- HttpService:PostAsync(GotNextWebhook, data)
- end
- -- Hitbox Extender
- local JamRange = 0.5
- GameplayTab:CreateSlider({
- Name = "Hitbox Extender (yd)",
- Range = {0, 4},
- Increment = 0.05,
- Suffix = "yd",
- CurrentValue = JamRange,
- Callback = function(Value)
- JamRange = Value
- end
- })
- -- Ping Lag
- local PingLag = 0
- GameplayTab:CreateSlider({
- Name = "Set Ping (ms)",
- Range = {0, 1000},
- Increment = 50,
- Suffix = "ms",
- CurrentValue = 0,
- Callback = function(Value)
- PingLag = Value
- if _G.PingToggle then
- settings().Network.IncomingReplicationLag = Value / 1000
- end
- end
- })
- GameplayTab:CreateToggle({
- Name = "Ping Toggle",
- CurrentValue = false,
- Callback = function(State)
- _G.PingToggle = State
- settings().Network.IncomingReplicationLag = State and PingLag / 1000 or 0
- end
- })
- -- Lag Phase
- local LagPhaseAmount = 0
- GameplayTab:CreateSlider({
- Name = "Lag Phase (ms)",
- Range = {0, 10000},
- Increment = 500,
- Suffix = "ms",
- CurrentValue = 0,
- Callback = function(Value)
- LagPhaseAmount = Value
- if _G.LagPhaseEnabled then
- settings().Network.IncomingReplicationLag = Value / 1000
- end
- end
- })
- GameplayTab:CreateToggle({
- Name = "Enable Lag Phase",
- CurrentValue = false,
- Callback = function(State)
- _G.LagPhaseEnabled = State
- settings().Network.IncomingReplicationLag = State and LagPhaseAmount / 1000 or 0
- end
- })
- -- Keybinds
- GameplayTab:CreateKeybind({
- Name = "Toggle Lag Phase",
- CurrentKeybind = "R",
- Callback = function()
- _G.LagPhaseEnabled = not _G.LagPhaseEnabled
- settings().Network.IncomingReplicationLag = _G.LagPhaseEnabled and LagPhaseAmount / 1000 or 0
- end
- })
- GameplayTab:CreateKeybind({
- Name = "Toggle Ping Lag",
- CurrentKeybind = "P",
- Callback = function()
- _G.PingToggle = not _G.PingToggle
- settings().Network.IncomingReplicationLag = _G.PingToggle and PingLag / 1000 or 0
- end
- })
- -- Hitbox Extend Keybind
- GameplayTab:CreateKeybind({
- Name = "Hitbox Extender Keybind",
- CurrentKeybind = "V",
- HoldToInteract = true,
- Callback = function(Held)
- if not Held then return end
- local pos = Character.HumanoidRootPart.Position
- local closest, closestDist = nil, math.huge
- for _, plr in ipairs(Players:GetPlayers()) do
- if plr ~= LocalPlayer and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then
- local dist = (plr.Character.HumanoidRootPart.Position - pos).Magnitude
- if dist < closestDist then
- closestDist = dist
- closest = plr.Character
- end
- end
- end
- if closest and closestDist < JamRange * 3 then
- firetouchinterest(Character.HumanoidRootPart, closest.HumanoidRootPart, 0)
- task.wait(0.05)
- firetouchinterest(Character.HumanoidRootPart, closest.HumanoidRootPart, 1)
- end
- end
- })
- Rayfield:Notify({
- Title = "Loaded",
- Content = "FreeDa5 Free336 .gg/336fn GUI Ready",
- Duration = 5
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement