Warning: Cannot modify header information - headers already sent by (output started at /home/scribcjm/public_html/includes/header.php:285) in /home/scribcjm/public_html/script.php on line 17
local u = game:GetService("UserInputService")
local plrs = game:GetService("Players")
local locplr = plrs.LocalPlayer
local rpl = game:GetService("ReplicatedStorage")
local bindkey = Enum.KeyCode.E -- change bind here
local activateRE = rpl.Knit.Knit.Services.DivergentFistService.RE.Activated
local function blackflash()
local chr = locplr.Character
if not chr then return end
local mset = chr:FindFirstChild("Moveset")
if not mset then return end
local dfist = mset:FindFirstChild("Divergent Fist")
if not dfist then return end
activateRE:FireServer(dfist)
task.wait(0.32)
chr = locplr.Character
if not chr then return end
mset = chr:FindFirstChild("Moveset")
if not mset then return end
dfist = mset:FindFirstChild("Divergent Fist")
if not dfist then return end
activateRE:FireServer(dfist)
task.wait(0.35)
chr = locplr.Character
if not chr then return end
mset = chr:FindFirstChild("Moveset")
if not mset then return end
dfist = mset:FindFirstChild("Divergent Fist")
if not dfist then return end
activateRE:FireServer(dfist)
end
u.InputBegan:Connect(function(ip, gp)
if gp then return end
if ip.KeyCode == bindkey then
task.spawn(blackflash)
end
end)