MADE BY Bobsie
FEATURE:
- MULTI HIT
- MOVE WHILE PUNCHING
- .
- https://www.roblox.com/games/8246874626/GREAT-APE-DBZ-DEMO
SCRIPT:
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)