-- FIXED Universal R6/R15 Toggleable FE Touch Fling GUI (Da Hood Tested, Jan 2026) -- NO SELF-FL ING: Smart velocity PULSE (huge spike → instant reset). You stay grounded, touch = enemy YEET! 🚀 local Players = game:GetService("Players") local RunService = game:GetService("RunService") local TweenService = game:GetService("TweenService") local lp = Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "FlingGUI" gui.Parent = lp:WaitForChild("PlayerGui") gui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 180, 0, 80) frame.Position = UDim2.new(0.5, -90, 0.5, -40) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 45) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = gui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = frame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0.4, 0) title.BackgroundTransparency = 1 title.Text = "🚀 Touch Fling (No Self-Fling)" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = frame local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.85, 0, 0.45, 0) btn.Position = UDim2.new(0.075, 0, 0.5, 0) btn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) btn.Text = "OFF" btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextScaled = true btn.Font = Enum.Font.Gotham btn.Parent = frame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 6) btnCorner.Parent = btn local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(255, 255, 255) stroke.Thickness = 1.5 stroke.Parent = btn local enabled = false local flingThread local function getRootPart(char) return char:FindFirstChild("HumanoidRootPart") or char:FindFirstChild("Torso") end local function fling() local detection = Instance.new("Decal") detection.Name = "juisdfj0i32i0eidsuf0iok" -- Anti-detect detection.Parent = game:GetService("ReplicatedStorage") local movel = 0.1 while enabled do local char = lp.Character local root = getRootPart(char) if root then local vel = root.Velocity -- HUGE PULSE: Spike velocity (flings on touch) root.Velocity = vel * 10000 + Vector3.new(0, 10000, 0) RunService.RenderStepped:Wait() -- INSTANT RESET: Back to normal (no self-fly) root.Velocity = vel RunService.Stepped:Wait() -- Tiny oscillate for stability root.Velocity = vel + Vector3.new(0, movel, 0) movel = -movel end RunService.Heartbeat:Wait() end end btn.MouseButton1Click:Connect(function() enabled = not enabled btn.Text = enabled and "ON" or "OFF" local tween = TweenService:Create(btn, TweenInfo.new(0.2), {BackgroundColor3 = enabled and Color3.fromRGB(50, 255, 50) or Color3.fromRGB(255, 50, 50)}) tween:Play() if enabled then flingThread = coroutine.create(fling) coroutine.resume(flingThread) else enabled = false -- Stops loop end end) print("NO SELF-FLING Touch Fling Loaded! Walk into enemies = SKY YEET. Toggle ON in Da Hood. 🐐")