Advertisement
blacknet_a1

The Maze ESP + Infinite Axe Script

Aug 25th, 2023
6,991
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. local tpp = game:GetService("Workspace").Axe.Handle.ClickDetector
  2. -- Homemade Flashlight
  3. game.Lighting.Ambient = Color3.new(1,1,1)
  4.  
  5. -- Tall Black Skeleton ESP
  6. text = "Skeleton" -- Replace this with what you want the tall guy to show up as for the ESP.
  7. item = game:GetService("Workspace").TheOrotund.HumanoidRootPart
  8. local BillboardGui = Instance.new("BillboardGui")
  9. local TextLabel = Instance.new("TextLabel")
  10. BillboardGui.Parent = item
  11. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. BillboardGui.Active = true
  13. BillboardGui.AlwaysOnTop = true
  14. BillboardGui.LightInfluence = 1
  15. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  16. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
  17. TextLabel.Parent = BillboardGui
  18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextLabel.BackgroundTransparency = 1
  20. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  21. TextLabel.Font = Enum.Font.SourceSans
  22. TextLabel.Text = text
  23. TextLabel.TextColor3 = Color3.new(255, 0, 0)
  24. TextLabel.TextScaled = true
  25. TextLabel.TextSize = 14
  26. TextLabel.TextWrapped = true
  27.  
  28. -- Short Masked Creature ESP
  29. text = "Short" -- Replace this with what you want the short guy to show up as for the esp.
  30. item = game:GetService("Workspace").TheCajoler.HumanoidRootPart
  31. local BillboardGui = Instance.new("BillboardGui")
  32. local TextLabel = Instance.new("TextLabel")
  33. BillboardGui.Parent = item
  34. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  35. BillboardGui.Active = true
  36. BillboardGui.AlwaysOnTop = true
  37. BillboardGui.LightInfluence = 1
  38. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  39. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
  40. TextLabel.Parent = BillboardGui
  41. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  42. TextLabel.BackgroundTransparency = 1
  43. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  44. TextLabel.Font = Enum.Font.SourceSans
  45. TextLabel.Text = text
  46. TextLabel.TextColor3 = Color3.new(255, 255, 255)
  47. TextLabel.TextScaled = true
  48. TextLabel.TextSize = 14
  49. TextLabel.TextWrapped = true
  50.  
  51. -- Chat Toggling
  52. loopEnabled = true
  53. game:GetService("Players").LocalPlayer.Chatted:Connect(function(Message)
  54. if Message:lower() == "/e on" then
  55. loopEnabled = true
  56. elseif Message:lower() == "/e off" then
  57. loopEnabled = false
  58. end
  59. end)
  60.  
  61. -- Axes
  62. while true do
  63. wait(0.00001)
  64. if loopEnabled then
  65. for _, a in pairs(game:GetService("Workspace"):GetDescendants()) do
  66. if a.Name == "ClickDetector" and a.Parent.Parent.Name == "Axe" then
  67. fireclickdetector(a)
  68. end
  69. end
  70. for _, a in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  71. if a.Name == "Axe" and not game.Players.LocalPlayer.Character:FindFirstChild("Axe") then
  72. a.Parent = game.Players.LocalPlayer.Character
  73. end
  74. end
  75. end
  76. end
Advertisement
Comments
  • Michiko13524
    58 days (edited)
    # text 5.56 KB | 0 0
    1. local tpp = game:GetService("Workspace").Axe.Handle.ClickDetector
    2. -- Homemade Flashlight
    3. game.Lighting.Ambient = Color3.new(1,1,1)
    4.  
    5. -- Tall Black Skeleton ESP
    6. text = "Skeleton" -- Replace this with what you want the tall guy to show up as for the ESP.
    7. item = game:GetService("Workspace").TheOrotund.Shadowwatcher.HumanoidRootPart
    8. local BillboardGui = Instance.new("BillboardGui")
    9. local TextLabel = Instance.new("TextLabel")
    10. BillboardGui.Parent = item
    11. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
    12. BillboardGui.Active = true
    13. BillboardGui.AlwaysOnTop = true
    14. BillboardGui.LightInfluence = 1
    15. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
    16. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
    17. TextLabel.Parent = BillboardGui
    18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
    19. TextLabel.BackgroundTransparency = 1
    20. TextLabel.Size = UDim2.new(0, 200, 0, 50)
    21. TextLabel.Font = Enum.Font.SourceSans
    22. TextLabel.Text = text
    23. TextLabel.TextColor3 = Color3.new(255, 0, 0)
    24. TextLabel.TextScaled = true
    25. TextLabel.TextSize = 14
    26. TextLabel.TextWrapped = true
    27.  
    28. -- Short Masked Creature ESP
    29. text = "Short" -- Replace this with what you want the short guy to show up as for the esp.
    30. item = game:GetService("Workspace").TheCajoler.HumanoidRootPart
    31. local BillboardGui = Instance.new("BillboardGui")
    32. local TextLabel = Instance.new("TextLabel")
    33. BillboardGui.Parent = item
    34. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
    35. BillboardGui.Active = true
    36. BillboardGui.AlwaysOnTop = true
    37. BillboardGui.LightInfluence = 1
    38. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
    39. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
    40. TextLabel.Parent = BillboardGui
    41. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
    42. TextLabel.BackgroundTransparency = 1
    43. TextLabel.Size = UDim2.new(0, 200, 0, 50)
    44. TextLabel.Font = Enum.Font.SourceSans
    45. TextLabel.Text = text
    46. TextLabel.TextColor3 = Color3.new(255, 255, 255)
    47. TextLabel.TextScaled = true
    48. TextLabel.TextSize = 14
    49. TextLabel.TextWrapped = true
    50.  
    51. -- Chat Toggling
    52. loopEnabled = true
    53. game:GetService("Players").LocalPlayer.Chatted:Connect(function(Message)
    54. if Message:lower() == "/e on" then
    55. loopEnabled = true
    56. elseif Message:lower() == "/e off" then
    57. loopEnabled = false
    58. end
    59. end)
    60.  
    61. -- Axes
    62. while true do
    63. wait(0.00001)
    64. if loopEnabled then
    65. for _, a in pairs(game:GetService("Workspace"):GetDescendants()) do
    66. if a.Name == "ClickDetector" and a.Parent.Parent.Name == "Axe" then
    67. fireclickdetector(a)
    68. end
    69. end
    70. for _, a in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
    71. if a.Name == "Axe" and not game.Players.LocalPlayer.Character:FindFirstChild("Axe") then
    72. a.Parent = game.Players.LocalPlayer.Character
    73. end
    74. end
    75. end
    76. endlocal tpp = game:GetService("Workspace").Axe.Handle.ClickDetector
    77. -- Homemade Flashlight
    78. game.Lighting.Ambient = Color3.new(1,1,1)
    79.  
    80. -- Tall Black Skeleton ESP
    81. text = "Skeleton" -- Replace this with what you want the tall guy to show up as for the ESP.
    82. item = game:GetService("Workspace").TheOrotund.HumanoidRootPart
    83. local BillboardGui = Instance.new("BillboardGui")
    84. local TextLabel = Instance.new("TextLabel")
    85. BillboardGui.Parent = item
    86. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
    87. BillboardGui.Active = true
    88. BillboardGui.AlwaysOnTop = true
    89. BillboardGui.LightInfluence = 1
    90. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
    91. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
    92. TextLabel.Parent = BillboardGui
    93. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
    94. TextLabel.BackgroundTransparency = 1
    95. TextLabel.Size = UDim2.new(0, 200, 0, 50)
    96. TextLabel.Font = Enum.Font.SourceSans
    97. TextLabel.Text = text
    98. TextLabel.TextColor3 = Color3.new(255, 0, 0)
    99. TextLabel.TextScaled = true
    100. TextLabel.TextSize = 14
    101. TextLabel.TextWrapped = true
    102.  
    103. -- Short Masked Creature ESP
    104. text = "Short" -- Replace this with what you want the short guy to show up as for the esp.
    105. item = game:GetService("Workspace").TheCajoler.TheDorvan.HumanoidRootPart
    106. local BillboardGui = Instance.new("BillboardGui")
    107. local TextLabel = Instance.new("TextLabel")
    108. BillboardGui.Parent = item
    109. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
    110. BillboardGui.Active = true
    111. BillboardGui.AlwaysOnTop = true
    112. BillboardGui.LightInfluence = 1
    113. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
    114. BillboardGui.StudsOffset = Vector3.new(0, 2.5, 0)
    115. TextLabel.Parent = BillboardGui
    116. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
    117. TextLabel.BackgroundTransparency = 1
    118. TextLabel.Size = UDim2.new(0, 200, 0, 50)
    119. TextLabel.Font = Enum.Font.SourceSans
    120. TextLabel.Text = text
    121. TextLabel.TextColor3 = Color3.new(255, 255, 255)
    122. TextLabel.TextScaled = true
    123. TextLabel.TextSize = 14
    124. TextLabel.TextWrapped = true
    125.  
    126. -- Chat Toggling
    127. loopEnabled = true
    128. game:GetService("Players").LocalPlayer.Chatted:Connect(function(Message)
    129. if Message:lower() == "/e on" then
    130. loopEnabled = true
    131. elseif Message:lower() == "/e off" then
    132. loopEnabled = false
    133. end
    134. end)
    135.  
    136. -- Axes
    137. while true do
    138. wait(0.00001)
    139. if loopEnabled then
    140. for _, a in pairs(game:GetService("Workspace"):GetDescendants()) do
    141. if a.Name == "ClickDetector" and a.Parent.Parent.Name == "Axe" then
    142. fireclickdetector(a)
    143. end
    144. end
    145. for _, a in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
    146. if a.Name == "Axe" and not game.Players.LocalPlayer.Character:FindFirstChild("Axe") then
    147. a.Parent = game.Players.LocalPlayer.Character
    148. end
    149. end
    150. end
    151. end
Add Comment
Please, Sign In to add comment
Advertisement