local TweenService = game:GetService("TweenService") local CoreGui = game:GetService("CoreGui") local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage :WaitForChild("Modules") :WaitForChild("Public") :WaitForChild("Warp") :WaitForChild("Index") :WaitForChild("Event") :WaitForChild("Request") local MainGui = Instance.new("ScreenGui", CoreGui) MainGui.ResetOnSpawn = false local Window = Instance.new("Frame", MainGui) Window.Size = UDim2.new(0, 240, 0, 160) Window.Position = UDim2.new(0.07, 0, 0.15, 0) Window.BackgroundColor3 = Color3.fromRGB(255,255,255) Window.BackgroundTransparency = 0.18 Window.Active = true Window.Draggable = true Instance.new("UICorner", Window).CornerRadius = UDim.new(0, 20) local WindowStroke = Instance.new("UIStroke", Window) WindowStroke.Color = Color3.fromRGB(210,210,210) WindowStroke.Thickness = 1.4 WindowStroke.Transparency = 0.3 local Title = Instance.new("TextLabel", Window) Title.Size = UDim2.new(1,0,0,40) Title.BackgroundTransparency = 1 Title.Font = Enum.Font.GothamSemibold Title.TextSize = 20 Title.TextColor3 = Color3.fromRGB(35,35,35) Title.Text = "PUPSIK" local function CreateButton(parent, text, color, y) local Btn = Instance.new("TextButton", parent) Btn.Size = UDim2.new(1, -30, 0, 45) Btn.Position = UDim2.new(0, 15, 0, y) Btn.BackgroundColor3 = color Btn.Text = text Btn.TextColor3 = Color3.fromRGB(255,255,255) Btn.Font = Enum.Font.GothamMedium Btn.TextSize = 17 Instance.new("UICorner", Btn).CornerRadius = UDim.new(0,14) Btn.MouseEnter:Connect(function() TweenService:Create(Btn, TweenInfo.new(0.15), {BackgroundTransparency = 0.07}):Play() end) Btn.MouseLeave:Connect(function() TweenService:Create(Btn, TweenInfo.new(0.15), {BackgroundTransparency = 0}):Play() end) return Btn end local StartBtn = CreateButton(Window, "Start", Color3.fromRGB(52,199,89), 50) local StopBtn = CreateButton(Window, "Stop", Color3.fromRGB(255,59,48), 100) local CloseBtn = Instance.new("TextButton", Window) CloseBtn.Size = UDim2.new(0,30,0,30) CloseBtn.Position = UDim2.new(1,-35,0,5) CloseBtn.BackgroundColor3 = Color3.fromRGB(255,59,48) CloseBtn.Text = "✕" CloseBtn.TextColor3 = Color3.fromRGB(255,255,255) CloseBtn.Font = Enum.Font.GothamBold CloseBtn.TextSize = 18 Instance.new("UICorner", CloseBtn).CornerRadius = UDim.new(0,8) CloseBtn.MouseButton1Click:Connect(function() MainGui:Destroy() end) local baseArgs = { buffer.fromstring("\001"), "\001", { {"50885", {{"PlayerRunEnded", { ["e96c7ace-6d86-47b4-9cbe-c969fdd64c6f"] = true, ["688f4da2-3b38-4c85-8def-6a7a3d4b1135"] = true, ["2c2743b7-ab44-4507-b550-01523835ed4d"] = true }, 229.94857788085938, 4, "Infinite"}}} } } local loops = {} local function startLoop() local loopRunning = true task.spawn(function() while loopRunning do event:FireServer(unpack(baseArgs)) task.wait(0.1) end end) table.insert(loops, {stop = function() loopRunning = false end}) end StartBtn.MouseButton1Click:Connect(function() startLoop() end) StopBtn.MouseButton1Click:Connect(function() -- Alle Loops stoppen for _, l in pairs(loops) do l.stop() end loops = {} end)