Bebedi

Untitled

Feb 20th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. getgenv().esp = false
  2. local highlights = {}
  3.  
  4. function start()
  5. while task.wait() do
  6. local esp = getgenv().esp
  7. local rake = game.Workspace:FindFirstChild("Rake")
  8. local rakeHighlight = game.CoreGui.Rake
  9.  
  10. if esp and rake then
  11. if not rakeHighlight then
  12. local highlight = Instance.new("Highlight", game.CoreGui)
  13. highlight.Name = "Rake"
  14. highlight.Adornee = rake
  15. highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  16. highlight.FillColor = Color3.fromRGB(255, 0, 0)
  17. highlights[rake] = highlight
  18. end
  19. else
  20. if rakeHighlight then
  21. rakeHighlight:Destroy()
  22. highlights[rake] = nil
  23. end
  24. end
  25. end
  26. end
  27.  
  28.  
  29. local library = loadstring(game:HttpGet('https://raw.githubusercontent.com/cypherdh/VanisUILIB/main/.gitignore'))()
  30.  
  31. local Window = library:CreateWindow("Rake ESP", "Made by Bebedi#9960", 10044538000)
  32.  
  33. local Tab = Window:CreateTab("Main")
  34.  
  35. local Page = Tab:CreateFrame("ESP")
  36.  
  37.  
  38.  
  39. Toggle = Page:CreateToggle("Rake ESP", "Shows the Rake", function(arg)
  40. getgenv().esp = arg
  41. start()
  42. end)
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment