INFINITE JUMPS / TAPS FOR JUMP CLICKER SCRIPT

Png 2 26 300x169 1

— weinzspace.com / #1 roblox script database! —

–You can use this to get coins to increase shit, which in return can generate more jumps using the script
–SETTINGS
local generate_key = “g” –set to whatever key you want, this is the toggle for the script
local interval = 0.00001 –Interval between jumps, set to 0 if you really feel like spamming it.
–Make sure game saves before leaving!
generate = false
m = game.Players.LocalPlayer:GetMouse()
m.KeyDown:connect(function(key)
if key == generate_key then
if generate == true then generate = false
elseif
generate == false then generate = true
while generate == true do
wait(interval)
game:GetService(“ReplicatedStorage”).Packages._Index:FindFirstChild(“sleitnick_knit@1.4.7”).knit.Services.JumpService.RE.Tap:FireServer()
end
end
end
end)

— The script was copied from the site weinzspace.com ! —