- Touch fling gui by z00rzkidd -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Frame_2 = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TextButton = Instance.new("TextButton") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ResetOnSpawn = false print("team z000rzkidd join today !") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0,0,0) Frame.BorderColor3 = Color3.fromRGB(255,255, 0) Frame.BorderSizePixel = 1 Frame.Position = UDim2.new(0.388539821, 0, 0.427821517, 0) Frame.Size = UDim2.new(0, 158, 0, 110) TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(0,0,0) TextButton.BorderColor3 = Color3.fromRGB(255,255,0) TextButton.BorderSizePixel = 1 TextButton.Position = UDim2.new(0.113924049, 0, 0.178181807, 0) TextButton.Size = UDim2.new(0, 121, 0,75) TextButton.Font = Enum.Font.SourceSansItalic TextButton.Text = "Fling Off" TextButton.TextColor3 = Color3.fromRGB(255,255, 0) TextButton.TextSize = 20.000 -- Scripts: local function IIMAWH_fake_script() -- TextButton.LocalScript local script = Instance.new('LocalScript', TextButton) local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local Players = game:GetService("Players") local toggleButton = script.Parent local hiddenfling = false local flingThread if not ReplicatedStorage:FindFirstChild("juisdfj0i32i0eidsuf0iok") then local detection = Instance.new("Decal") detection.Name = "juisdfj0i32i0eidsuf0iok" detection.Parent = ReplicatedStorage end local function fling() local lp = Players.LocalPlayer local c, hrp, vel, movel = nil, nil, nil, 0.1 while hiddenfling do RunService.Heartbeat:Wait() c = lp.Character hrp = c and c:FindFirstChild("HumanoidRootPart") if hrp then vel = hrp.Velocity hrp.Velocity = vel * 10000 + Vector3.new(0, 10000, 0) RunService.RenderStepped:Wait() hrp.Velocity = vel RunService.Stepped:Wait() hrp.Velocity = vel + Vector3.new(0, movel, 0) movel = -movel end end end toggleButton.MouseButton1Click:Connect(function() hiddenfling = not hiddenfling toggleButton.Text = hiddenfling and "Fling On" or "Fling Off" if hiddenfling then flingThread = coroutine.create(fling) coroutine.resume(flingThread) else hiddenfling = false end end) end coroutine.wrap(IIMAWH_fake_script)() local function QCJQJL_fake_script() -- Frame.LocalScript local script = Instance.new('LocalScript', Frame) script.Parent.Active = true script.Parent.Draggable = true end coroutine.wrap(QCJQJL_fake_script)()