What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

open source auto run

Version / Update: v1.0.0
Download / Script Link
-- https://discord.gg/McWzfguSRb
getgenv().AutoRun = true -- Set to false to turn off

local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local player = Players.LocalPlayer

local autoRunConn

local function startAutoRun()
if autoRunConn then autoRunConn:Disconnect() end

autoRunConn = RunService.Heartbeat:Connect(function()
if not getgenv().AutoRun then
if autoRunConn then autoRunConn:Disconnect() end
return
end

local char = player.Character
if char then
char:SetAttribute("WalkSpeed", 24) -- Put higher to go faster (24 is default)
end
end)
end

if getgenv().AutoRun then
startAutoRun()
end
[ View More ]
7010ce66-07d5-4e30-ae4e-514170c4e4ab.webp


just a auto run gng so you dont gotta hold shift or wtv gng gng gng gng
 
Works on mobile
  1. Yes
Back
Top