-- 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
Comments
No comments yet
Be the first to share your thoughts!