Imported from ScriptBlox https://scriptblox.com/
Auto black flash
Bind is E, if u want u can change it in bindkey = Enum.KeyCode.E
Free
script.lua
38 lines
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)
Description
Comments 0
Login to comment
Loading comments...
Copied!