Roblox hack script | Roblox Survive the Killer Auto Farm Coin And Walk Speed

Script by Nurame
To change WalkSpeed while executed,
just change the _G.WalkSpeed value in a separate script
local plr = game.Players.LocalPlayer
local RunService= game:GetService("RunService")
_G.WalkSpeed = 20
local function isValid()
local hrp = plr.Character:FindFirstChild("HumanoidRootPart")
local map = game.Workspace:FindFirstChild("CurrentMap")
local human = plr.Character:FindFirstChild("Humanoid")
if hrp and map and human then
local coins = map:FindFirstChild("Coins")
if coins then
return hrp, human, coins
end
end
end
RunService.RenderStepped:Connect(function()
local hrp, human, coins = isValid()
if hrp and human then
human.WalkSpeed = _G.WalkSpeed
if coins then
for _,v in pairs(coins:GetDescendants()) do
if v.Name == "Coin" then
v.CFrame = hrp.CFrame
end
end
end
end
end)