Advertisement
NoTextForSpeech

esp test

Apr 10th, 2024
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))()
  2. local w = library:Window("Jaws ESP")
  3. local highlight = Instance.new("Highlight")
  4. highlight.Name = "ESP"
  5. getgenv().esp = false
  6. local sharks = workspace.Gameplay.Sharks
  7. w:Toggle("Toggle", false, function(bool)
  8. esp = bool
  9. if esp == true then
  10. while true do
  11. if not esp then break end
  12. for _, v in pairs(workspace.Gameplay.Sharks:GetDescendants()) do
  13. if v.Name == "Shark" and not v:FindFirstChild("ESP") then
  14. local esp = highlight:Clone()
  15. esp.Parent = v
  16. end
  17. end
  18. wait()
  19. end
  20. elseif esp == false then
  21. for _, v in pairs(workspace.Gameplay.Sharks:GetDescendants()) do
  22. if v.Name == "ESP" then
  23. v:Destroy()
  24. end
  25. end
  26. end
  27. end)
  28. w:Label("~ Bac0nH1ckOff", Color3.fromRGB(127, 143, 166))
  29. w:Button("Destroy Gui", function()
  30. esp = false
  31. library:Destroy()
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement