Advertisement
robloxscript111

Chainsaw Man: Devil's Heart [Bug Fixes]

Feb 8th, 2023
2,629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. --// Services \\--
  2. local Workspace = game:GetService("Workspace")
  3. local Players = game:GetService("Players")
  4.  
  5. --// ESP Library by Kiriot \\--
  6. local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/JustEzpi/ROBLOX-Scripts/main/Kiriot_ESPLibrary"))()
  7. ESP.Color = Color3.new(1,1,1)
  8. ESP:Toggle(true)
  9. ESP.Traces = false
  10. ESP.Names = false
  11. ESP.Boxes = false
  12. ESP.Players = false
  13. ESP.Enemies = false
  14. ESP.Quest = false
  15.  
  16. --// Variables \\--
  17. local Player = Players.LocalPlayer
  18. local Special = {"Legendary","Magical","Corrupt","Bloody"}
  19. local QuestNPCs = Workspace:WaitForChild("DialogNPCs")
  20. local Living = Workspace:WaitForChild("Living")
  21.  
  22. --// UI Library \\--
  23. local Library = loadstring(game:HttpGetAsync('https://raw.githubusercontent.com/Just-Egg-Salad/roblox-scripts/main/uwuware'))()
  24. local Window = Library:CreateWindow("Fiend ESP by Ezpi")
  25. Window:AddToggle({
  26. text = "Players",
  27. callback = function(State)
  28. ESP.Players = State
  29. end
  30. })
  31. Window:AddToggle({
  32. text = "Enemies",
  33. callback = function(State)
  34. ESP.Enemies = State
  35. while ESP.Enemies == true do
  36. for _, V in next, Living:GetChildren() do
  37. if V:IsA("Model") and V.Name ~= "NPC" and Players:GetPlayerFromCharacter(V) == nil and V:FindFirstChildWhichIsA("Humanoid") then
  38. local Box = ESP:GetBox(V)
  39. if Box == nil then
  40. ESP:Add(V, {
  41. Color = Color3.fromRGB(110, 255, 200),
  42. PrimaryPart = V.PrimaryPart or V:FindFirstChild("Head"),
  43. IsEnabled = function()
  44. if ESP.Enemies == true and V:FindFirstChild("Humanoid") and V.Humanoid.Health > 0 then
  45. return true
  46. end
  47. end
  48. })
  49. end
  50. end
  51. end
  52. task.wait(0.5)
  53. end
  54. end
  55. })
  56. Window:AddToggle({
  57. text = "Quest NPCs",
  58. callback = function(State)
  59. ESP.Quest = State
  60. end
  61. })
  62. local Folder = Window:AddFolder("Settings")
  63. Folder:AddToggle({
  64. text = "Traces",
  65. callback = function(State)
  66. ESP.Traces = State
  67. end
  68. })
  69. Folder:AddToggle({
  70. text = "Names",
  71. callback = function(State)
  72. ESP.Names = State
  73. end
  74. })
  75. Folder:AddToggle({
  76. text = "Boxes",
  77. callback = function(State)
  78. ESP.Boxes = State
  79. end
  80. })
  81. Library:Init()
  82.  
  83. --// Quest NPCs \\--
  84. for _, A_1 in next, QuestNPCs:GetChildren() do
  85. if A_1:FindFirstChild("Chat") and A_1.Chat:FindFirstChild("Quest") then
  86. ESP:Add(A_1, {
  87. Color = Color3.fromRGB(255, 110, 150),
  88. IsEnabled = "Quest"
  89. })
  90. end
  91. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement