---EQUIP FIST--- while task.wait() do for _, v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do if v:IsA("Model") and v.Name == "Ice Smuggler" then if v:WaitForChild("Humanoid").Health > 0 and game:GetService("Players").LocalPlayer.Character.Humanoid.Health > 0 then repeat wait() game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.HumanoidRootPart.Position) game:GetService("ReplicatedStorage"):WaitForChild("RS"):WaitForChild("Remotes"):WaitForChild("Combat"):WaitForChild("UseMelee"):FireServer(unpack({[1] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Basic Combat"),[3] = v.HumanoidRootPart.Position})) until v:WaitForChild("Humanoid").Health <= 0 do print("mob has been killed!") end end end end end