DBZ (DEMO) Script | MULTI HIT, MOVE WHILE PUNCHING

Created by Bobsie

Features:

  • Multi Hit:
local target = game:GetService("ReplicatedStorage").Events.TryAttack

local OldNamecall
OldNamecall = hookmetamethod(game, "__namecall", newcclosure(function(self,...)
  local Args = {...}
  local method = getnamecallmethod()
  if not checkcaller() and self == target and method == "FireServer" and Args[1].Type then
      for i = 1, 50 do
          OldNamecall(self, ...)
      end
  end
  return OldNamecall(self, ...)
end))
  • Move while punching:
local target = game:GetService("Workspace").Main.Live[game:GetService("Players").LocalPlayer.Name].Combat
local env = getsenv(target)
local Hook = hookfunction(env.MoveBodyPosition, function(...)
end)