TheSkibidiOne1

BF TEST

Feb 20th, 2025
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. local function blackflashgojo()
  2. print("blackflashgojo start", tick())
  3. game:GetService("ReplicatedStorage").Knit.Knit.Services.ReversalRedMaxService.RE.Activated:FireServer("false")
  4. game:GetService("ReplicatedStorage").Knit.Knit.Services.GojoService.RE.RightActivated:FireServer()
  5. print("blackflashgojo end", tick())
  6. end
  7.  
  8. local function blackflashsmg()
  9. game:GetService("ReplicatedStorage").Knit.Knit.Services.FocusStrikeService.RE.Activated:FireServer("false")
  10. end
  11.  
  12. local function blackflash()
  13. print("blackflash start", tick())
  14. game:GetService("ReplicatedStorage").Knit.Knit.Services.DivergentFistService.RE.Activated:FireServer("false")
  15. print("blackflash end", tick())
  16. end
  17.  
  18. local function blueflash()
  19. print("blueflash start", tick())
  20. game:GetService("ReplicatedStorage").Knit.Knit.Services.DivergentFistService.RE.Activated:FireServer("true")
  21. print("blueflash end", tick())
  22. end
  23.  
  24. local function run_blackflashgojo()
  25. local success, err = pcall(function()
  26. blackflashgojo()
  27. wait(0.32)
  28. blackflashgojo()
  29. end)
  30.  
  31. if not success then
  32. blueflash()
  33. end
  34. end
  35.  
  36. local function run_blackflash()
  37. local success, err = pcall(function()
  38. blackflash()
  39. wait(0.32)
  40. blackflash()
  41. end)
  42.  
  43. if not success then
  44. blueflash()
  45. end
  46. end
  47.  
  48. local function run_blackflashsmg()
  49. local success, err = pcall(function()
  50. blackflashsmg()
  51. wait(0.32)
  52. blackflashsmg()
  53. end)
  54.  
  55. if not success then
  56. blueflash()
  57. end
  58. end
  59.  
  60. local ScreenGui = Instance.new("ScreenGui")
  61. ScreenGui.Parent = game.CoreGui
  62.  
  63. local ServerHopButton = Instance.new("TextButton")
  64. ServerHopButton.Text = "Black Flash"
  65. ServerHopButton.Size = UDim2.new(0, 200, 0, 50)
  66. ServerHopButton.Position = UDim2.new(0.5, -100, 0.25, 0)
  67. ServerHopButton.Active = true
  68. ServerHopButton.Draggable = true
  69. ServerHopButton.ClipsDescendants = true
  70. ServerHopButton.Parent = ScreenGui
  71.  
  72. ServerHopButton.MouseButton1Click:Connect(function()
  73. task.spawn(run_blackflashgojo)
  74. task.spawn(run_blackflashsmg)
  75. task.spawn(run_blackflash)
  76. end)
Add Comment
Please, Sign In to add comment