--equip fist to use local fist = "Crimson Hellfire Fists" --"Basic Fists", "Hellish Flame Fists", "Crimson Hellfire Fists" local eh = game.Players:GetChildren() local plr = game:GetService("Players").LocalPlayer.Character.Humanoid.RootPart while true do for i, v in pairs(eh) do if v:IsA("Player") then plr.CFrame = CFrame.new(500, 500, 500) local args = { [1] = v.Character.HumanoidRootPart, [2] = v.Character, [3] = game:GetService("Players").LocalPlayer.Character.Hitboxes.RightFoot } game:GetService("Players").LocalPlayer.Character[fist].HitFunction:FireServer(unpack(args)) wait(1.2) end end end