MADE BY Trz
FEATURE:
- LEVEL FARM
- click on the combat tool
- then execute the first script
- this is the accept task thing
- after you accept the quest execute the 2nd one
SCRIPT 1:
while wait() do
local args = {
[1] = game:GetService("Players").LocalPlayer,
}
game:GetService("ReplicatedStorage").Events.boxing:FireServer(unpack(args))
end
SCRIPT 2:
while wait() do
local Mob = game:GetService("Workspace").Npcs["Karate_Boss"]
local Body = Mob.PrimaryPart
local BodyCFrame = Body.CFrame -- the CFrame of the mob's body
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = BodyCFrame - BodyCFrame.LookVector * 3
game:GetService("Workspace").Npcs["Karate_Boss"].Humanoid.Health=0
end