[ad_1]
Created by akshon
Features:
- Basically it multiplies attack damage 280x a second most weapons doing 20k+ damage per hit
- Press “f” once do not re-execute or press f at all during play
- Don’t change the value any higher than 20 due to client lag.
- Enjoy killing anything in the game except mega bosses
local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
local Toggled = false
local Keybind = "f"
Mouse.KeyDown:Connect(function(Key)
if Key == Keybind then
if Toggled then
Toggled = false
else
Toggled = true
while Toggled and wait() do
for i = 1, 20 do
task.spawn(function()
game:GetService("Players").LocalPlayer.Character:FindFirstChild("Name here").RemoteFunction:InvokeServer("hit", {100000000000, 1, game:GetService("Players").LocalPlayer.Character.Humanoid})
end)
end
end
end
end
end)
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]