Advertisement
ForkFullFight

Untitled

Jul 28th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. task.wait(.5)
  2. local Name = game:GetService("Players").LocalPlayer.Name
  3. local lplr = game:GetService("Players").LocalPlayer
  4. local anticheatnames = {}
  5. lplr.DescendantAdded:Connect(function(possibly_an_anti_cheat)
  6. if possibly_an_anti_cheat:IsA("LocalScript") and possibly_an_anti_cheat ~= script then
  7. possibly_an_anti_cheat.Disabled = true
  8. possibly_an_anti_cheat:Destroy()
  9. table.insert(anticheatnames,possibly_an_anti_cheat.Name)
  10. end
  11. end)
  12. for _, v in pairs(lplr:GetDescendants()) do
  13. if v:IsA("LocalScript") and v ~= script then
  14. v.Disabled = true
  15. v:Destroy()
  16. table.insert(anticheatnames,v.Name)
  17. end
  18. end
  19. local msgs = "There were no anti cheats detected (Hopefully)!"
  20. if #anticheatnames ~= 0 then
  21. msgs = "Possible anti cheats that got deleted were: "
  22. for _, v in pairs(anticheatnames) do
  23. msgs = msgs..v..", "
  24. end
  25. msgs = msgs.." and possibly nothing else."
  26. end
  27. local anticheatmsg = Instance.new("Message",workspace)
  28. coroutine.resume(coroutine.create(function()
  29. for i = 1,#msgs do
  30. anticheatmsg.Text = string.sub(msgs,0,i)
  31. task.wait()
  32. end
  33. task.wait(1.5)
  34. for i = 1,#msgs do
  35. anticheatmsg.Text = string.sub(msgs,0,#msgs-i)
  36. task.wait()
  37. end
  38. task.wait(.1)
  39. anticheatmsg:Destroy()
  40. end))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement