local Remote = game:GetService("ReplicatedStorage") :WaitForChild("Packages") :WaitForChild("_Index") :WaitForChild("sleitnick_knit@1.4.7") :WaitForChild("knit") :WaitForChild("Services") :WaitForChild("PlayerService") :WaitForChild("RF") :WaitForChild("FinishTutorial") local toggled = false local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ToggleButton = Instance.new("TextButton") local UICornerFrame = Instance.new("UICorner") local UICornerButton = Instance.new("UICorner") ScreenGui.Parent = game:GetService("CoreGui") MainFrame.Parent = ScreenGui MainFrame.Size = UDim2.new(0, 200, 0, 100) MainFrame.Position = UDim2.new(0.5, -100, 0.5, -50) MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) MainFrame.Active = true MainFrame.Draggable = true UICornerFrame.Parent = MainFrame Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 30) Title.Position = UDim2.new(0, 0, 0, 0) Title.BackgroundTransparency = 1 Title.Text = "Inf Money" Title.TextColor3 = Color3.fromRGB(255, 215, 0) Title.TextScaled = true Title.Font = Enum.Font.GothamBold ToggleButton.Parent = MainFrame ToggleButton.Size = UDim2.new(0.9, 0, 0, 50) ToggleButton.Position = UDim2.new(0.05, 0, 0.4, 0) ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70) ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.TextScaled = true ToggleButton.Text = "Start" UICornerButton.Parent = ToggleButton ToggleButton.MouseButton1Click:Connect(function() toggled = not toggled ToggleButton.Text = toggled and "Stop" or "Start" if toggled then task.spawn(function() while toggled do for i = 1, 8 do -- fewer threads = less lag task.spawn(function() while toggled do Remote:InvokeServer() task.wait(0.01) -- tiny delay keeps speed high but removes lag end end) end task.wait(0.05) end end) end end)