Version / Update: v1.0.0
- Download / Script Link
- local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local Player = Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")
local DamageRemote = Character:WaitForChild("Sword"):WaitForChild("RemoteFunction")
while task.wait(0.1) do
for _, obj in pairs(Workspace:GetDescendants()) do
if obj:IsA("Humanoid") and obj ~= Humanoid then
DamageRemote:InvokeServer("hit", {obj, math.huge})
end
end
end[ View More ]
Requirements:Equip sword before using the script