0% found this document useful (0 votes)
41 views1 page

XDDDDD

Jdjxhbxbxbx
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views1 page

XDDDDD

Jdjxhbxbxbx
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

local player = game.Players.

LocalPlayer
local backpack = player:WaitForChild("Backpack")
local character = player.Character or player.CharacterAdded:Wait()
local args = {
[1] = 0,
[2] = "11:11:11:11"
}

local replicatedStorage = game:GetService("ReplicatedStorage")


local itemRemote = replicatedStorage:WaitForChild("Item")

for _ = 1, 15 do
itemRemote:FireServer(unpack(args))
end
local tool = Instance.new("Tool")
tool.Name = "1 Punch"
tool.Parent = backpack
tool.RequiresHandle = false

local function activateFists()


for _, item in ipairs(backpack:GetChildren()) do
if item:IsA("Tool") and item.Name == "Fists" then
item.Parent = character
item:Activate()
end
end

for _, item in ipairs(character:GetChildren()) do


if item:IsA("Tool") and item.Name == "Fists" then
item:Activate()
end
end
end

local function onActivated()


activateFists()
end

tool.Activated:Connect(onActivated)
tool.RequiresHandle = false

You might also like