Anime Punching Simulator Script | AUTO REBIRTH, AUTO TAP, AUTO PRACTICE & MORE!

Created by Aleron99

Features:

  • AUTO REBIRTH
  • AUTO TAP
  • AUTO PRACTICE
  • TP TO 1ST CAMP
  • OPEN SOURCE
--Auto Rebirth
_G.toggle = false-- turn to true if you want it to start
while _G.toggle do
game:GetService("ReplicatedStorage").Remotes.ClientRemote:InvokeServer("Rebirths",1 ) -- 1-19 rebirth options list is here: https://pastebin.com/mzCYEZuY
end

--Auto Tap
_G.toggle = false -- turn to true if you want it to start
while _G.toggle do
game:service('ReplicatedStorage').Remotes.ClientRemote:InvokeServer("Tapping")
end

--tp to 1st camp
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-29.469232559204, 23.597997665405, 65.304634094238)) --advanced camp is -11041.567382812, 22.581274032593, -973.88330078125

--Auto Practice
_G.enabled = true
while true do
wait (1)
if _G.enabled == true then
local N=game:GetService("VirtualInputManager")
N:SendKeyEvent(true,"E",false,game)
end
end